scripts: fix bin/cqlsh shortcut

Since 3c7af28725, the cqlsh submodule no longer contains a
bin/cqlsh shell script. This broke the supermodule's bin/cqlsh
shortcut.

Fix it by invoking cqlsh.py directly.

Closes scylladb/scylladb#20591
This commit is contained in:
Avi Kivity
2024-09-13 20:45:00 +03:00
committed by Pavel Emelyanov
parent ea29fe579b
commit 870d1c16f7

View File

@@ -4,5 +4,5 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
here=$(dirname "$0")
exec "$here/../tools/cqlsh/bin/cqlsh" "$@"
exec "$here/../tools/cqlsh/bin/cqlsh.py" "$@"