Prevent globbing and word splitting in nodetool

This commit is contained in:
Adam.Litwin 2024-10-24 21:18:01 +02:00
parent 7446529e45
commit 5c34d185a0
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ JVM_ARGS=""
SSL_FILE=$HOME/.cassandra/nodetool-ssl.properties
while true
do
if [ ! $1 ]; then break; fi
if [ ! "$1" ]; then break; fi
case $1 in
-p)
JMX_PORT=$2