Added missing quotes in test cmd.

This commit is contained in:
Bert, DD5XL 2016-08-21 12:05:36 +02:00 committed by GitHub
parent 37f78e8a44
commit b7a0decdda
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ set -e
case "$1" in
start)
# Wait for an IP address
until [ $ipVar != " " ]; do
until [ "$ipVar" != " " ]; do
sleep 10
ipVar=`hostname -I`
done