From b7a0decdda0b01540b97fbfc1a4931cd00137d3e Mon Sep 17 00:00:00 2001 From: "Bert, DD5XL" Date: Sun, 21 Aug 2016 12:05:36 +0200 Subject: [PATCH] Added missing quotes in test cmd. --- linux/init/mmdvmhost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/init/mmdvmhost b/linux/init/mmdvmhost index def0587..85c8c67 100644 --- a/linux/init/mmdvmhost +++ b/linux/init/mmdvmhost @@ -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