You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2012/03/15 02:20:13 UTC

ios commit: Fixed CB-317 : Xcode: Shell Script Invocation Error when directory has spaces in name

Updated Branches:
  refs/heads/master a16e0dd40 -> b9a6d2266


Fixed CB-317 : Xcode: Shell Script Invocation Error when directory has spaces in name


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/b9a6d226
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/b9a6d226
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/b9a6d226

Branch: refs/heads/master
Commit: b9a6d22664d65900809148cb6366166261d14f64
Parents: a16e0dd
Author: Shazron Abdullah <sh...@apache.org>
Authored: Wed Mar 14 18:19:58 2012 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Wed Mar 14 18:19:58 2012 -0700

----------------------------------------------------------------------
 .../TemplateInfo.plist                             |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/b9a6d226/Cordova-based Application.xctemplate/TemplateInfo.plist
----------------------------------------------------------------------
diff --git a/Cordova-based Application.xctemplate/TemplateInfo.plist b/Cordova-based Application.xctemplate/TemplateInfo.plist
index 304f14b..854db01 100644
--- a/Cordova-based Application.xctemplate/TemplateInfo.plist	
+++ b/Cordova-based Application.xctemplate/TemplateInfo.plist	
@@ -347,8 +347,8 @@
 					<string>/bin/bash</string>
 					<key>ShellScript</key>
 					<string>
-								chmod 755 $PROJECT_DIR/$PROJECT_NAME/verify.sh
-								$PROJECT_DIR/$PROJECT_NAME/verify.sh
+								chmod 755 "$PROJECT_DIR/$PROJECT_NAME/verify.sh"
+								"$PROJECT_DIR/$PROJECT_NAME/verify.sh"
 					</string>
 				</dict>
 			</array>