Merge pull request #139 from dd5xl/master

Added missing quotes in test cmd.
This commit is contained in:
Jonathan Naylor 2016-08-21 11:18:10 +01:00 committed by GitHub
commit fba178e890

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