commit c2e4c304e3adde2217056c2e6d674fd24e0cd800 parent c56138c2808bdfc22811c5617c58b149f7725e62 Author: Alexander Barton <alex@barton.de> Date: Thu, 27 Aug 2015 00:12:50 +0200 platformtest.sh: Fix quoting Diffstat:
M | contrib/platformtest.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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`