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
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (C) 2023-present ScyllaDB
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
here=$(dirname "$0")
|
|
exec "$here/../tools/cqlsh/bin/cqlsh.py" "$@"
|
|
|