This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/cleanup in repository x2goclient. commit 6189c2770d62e3b7f3be8518bb839a7b790408b5 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 14 05:40:58 2015 +0100 macbuild.sh: fix up previously overlooked variables deserving curly braces and quotes. --- macbuild.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/macbuild.sh b/macbuild.sh index 30944ff..2d583c2 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -28,15 +28,15 @@ function phase() { phase "Cleaning" make clean -rm -rf "$APPBUNDLE" -rm -rf "$DMGFILE" +rm -rf "${APPBUNDLE}" +rm -rf "${DMGFILE}" phase "Running lrelease" -lrelease "$PROJECT" +lrelease "${PROJECT}" phase "Running qmake" qmake -config release \ - CONFIG+=x86_64 \ + CONFIG+="x86_64" \ QMAKE_MAC_SDK="${SDK}" \ QMAKE_MACOSX_DEPLOYMENT_TARGET="${MACOSX_DEPLOYMENT_TARGET}" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git