diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 15:56:57 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 15:56:57 +0000 |
commit | 00e930b1a235e58d1dad7ace3dc79d3ba054ce77 (patch) | |
tree | ec007365d3f1349ddc4010278c1a179fbaca27d2 | |
parent | abb8268f3a07a33e1c53bcbe9609fe59daafe87b (diff) | |
download | mariadb-git-00e930b1a235e58d1dad7ace3dc79d3ba054ce77.tar.gz |
fix for wrong use of shell test
-rw-r--r-- | mysql-test/ndb/ndbcluster.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/ndb/ndbcluster.sh b/mysql-test/ndb/ndbcluster.sh index 7485e42923e..294d32ac4be 100644 --- a/mysql-test/ndb/ndbcluster.sh +++ b/mysql-test/ndb/ndbcluster.sh @@ -205,7 +205,7 @@ if [ -f "$fs_ndb/$pidfile" ] ; then fi done kill_pids=$new_kill_pid - if [ "$kill_pids" == "" ] ; then + if [ -z "$kill_pids" ] ; then break fi sleep 1 |