From: Alexander Barton Date: Wed, 26 Aug 2015 22:12:50 +0000 (+0200) Subject: platformtest.sh: Fix quoting X-Git-Tag: rel-23-rc1~5 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=c2e4c304e3adde2217056c2e6d674fd24e0cd800 platformtest.sh: Fix quoting --- diff --git a/contrib/platformtest.sh b/contrib/platformtest.sh index e3587fbf..e7e5ffe1 100755 --- a/contrib/platformtest.sh +++ b/contrib/platformtest.sh @@ -161,7 +161,7 @@ if [ -r "Makefile" ]; then fi # Get ngIRCd version information -eval $(grep "^VERSION = " Makefile | sed -e 's/ //g') +eval "$(grep "^VERSION = " Makefile | sed -e 's/ //g')" case "$VERSION" in *~*-*) VERSION=`echo "$VERSION" | cut -b1-10`