From 0614fba9df41df3c9b50915786e865186ad42f03 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Thu, 15 Oct 2015 20:21:41 -0400 Subject: [PATCH] Make the script POSIX compliant so it works with dash (Fixes #977) --- tests/boulder-integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/boulder-integration.sh b/tests/boulder-integration.sh index 981c8967a..55b42ef9a 100755 --- a/tests/boulder-integration.sh +++ b/tests/boulder-integration.sh @@ -14,7 +14,7 @@ export PATH="/usr/sbin:$PATH" # /usr/sbin/nginx export GOPATH="${GOPATH:-/tmp/go}" export PATH="$GOPATH/bin:$PATH" -if [ `uname` == 'Darwin' ]; then +if [ `uname` = "Darwin" ];then readlink="greadlink" else readlink="readlink"