From 870d1c16f70c69211eeefe9f92a02690bf8d70f4 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Fri, 13 Sep 2024 20:45:00 +0300 Subject: [PATCH] scripts: fix bin/cqlsh shortcut Since 3c7af287253e0, 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 --- bin/cqlsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cqlsh b/bin/cqlsh index 3b5a5a7c53..ceef5f66d9 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -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" "$@"