From cc050dac5fcc4097b24e33933ab88eacae9b50ff Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 19 Dec 2014 09:59:16 +0100 Subject: [PATCH] Fixed bash comparison. --- admin/mac/build-release-osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/mac/build-release-osx.sh b/admin/mac/build-release-osx.sh index 7b6a93634..5bd3ffcff 100755 --- a/admin/mac/build-release-osx.sh +++ b/admin/mac/build-release-osx.sh @@ -18,7 +18,7 @@ function die { } ################################################################################ -if [ -z $2 ] +if [ -z "$2" ] then echo This script expects the version number and cert-signer as parameters, e.g. "1.0.0 John Doe" exit 1