mirror of https://github.com/apache/cassandra
Prevent globbing and word splitting in nodetool
This commit is contained in:
parent
7446529e45
commit
5c34d185a0
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue