diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-10-20 15:56:57 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-10-20 15:56:57 +0000 |
commit | 0e114cc7e6de24a16c6634c7e0f4de3f69a28ead (patch) | |
tree | ec007365d3f1349ddc4010278c1a179fbaca27d2 /mysql-test/ndb | |
parent | 42541dad476bb67b8a3fa32d5e832953983fb78a (diff) | |
download | mariadb-git-0e114cc7e6de24a16c6634c7e0f4de3f69a28ead.tar.gz |
fix for wrong use of shell test
Diffstat (limited to 'mysql-test/ndb')
-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 |