[X2Go-Commits] [x2goclient] 45/87: macbuild.sh: fix up previously overlooked variables deserving curly braces and quotes.

git-admin at x2go.org git-admin at x2go.org
Wed Mar 4 22:14:40 CET 2015


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch feature/cleanup
in repository x2goclient.

commit 33b3a2b375a5b9cf1272804a91adcdf79b3737fc
Author: Mihai Moldovan <ionic at 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/code.x2go.org/x2goclient.git//../..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list