Revision
75315
Author
ryandesign@macports.org
Date
2011-01-21 02:58:43 -0800 (Fri, 21 Jan 2011)

Log Message

If we exit from the post-build run script, exit 0 so as not to abort the build

Modified Paths

Diff

Modified: users/ryandesign/PCLauncher/PCLauncher.xcodeproj/project.pbxproj (75314 => 75315)


--- users/ryandesign/PCLauncher/PCLauncher.xcodeproj/project.pbxproj	2011-01-21 10:51:50 UTC (rev 75314)
+++ users/ryandesign/PCLauncher/PCLauncher.xcodeproj/project.pbxproj	2011-01-21 10:58:43 UTC (rev 75315)
@@ -237,7 +237,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "SVN=\"$(which svn 2>/dev/null)\"\n[ -x \"$SVN\" ] || exit\nSVNVERSION=\"$(which svnversion 2>/dev/null)\"\n[ -x \"$SVNVERSION\" ] || exit\nPLISTBUDDY=\"/usr/libexec/PlistBuddy\"\n[ -x \"$PLISTBUDDY\" ] || PLISTBUDDY=\"/Library/Receipts/AdditionalEssentials.pkg/Contents/Resources/PlistBuddy\"\n[ -x \"$PLISTBUDDY\" ] || exit\n$SVN info &>/dev/null || exit\nREV=`$SVNVERSION -nc | sed 's/^[^:]*://'`\n$PLISTBUDDY -c \"Set :CFBundleVersion $REV\" \"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}\"";
+			shellScript = "SVN=\"$(which svn 2>/dev/null)\"\n[ -x \"$SVN\" ] || exit 0\nSVNVERSION=\"$(which svnversion 2>/dev/null)\"\n[ -x \"$SVNVERSION\" ] || exit 0\nPLISTBUDDY=\"/usr/libexec/PlistBuddy\"\n[ -x \"$PLISTBUDDY\" ] || PLISTBUDDY=\"/Library/Receipts/AdditionalEssentials.pkg/Contents/Resources/PlistBuddy\"\n[ -x \"$PLISTBUDDY\" ] || exit 0\n$SVN info &>/dev/null || exit 0\nREV=`$SVNVERSION -nc | sed 's/^[^:]*://'`\n$PLISTBUDDY -c \"Set :CFBundleVersion $REV\" \"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}\"";
 		};
 /* End PBXShellScriptBuildPhase section */