Skip to content

Commit

Permalink
Merge pull request #126 from Tatsh/issue-125
Browse files Browse the repository at this point in the history
Fix building for when $PROJECT_DIR has a space
  • Loading branch information
iT0ny committed Mar 8, 2016
2 parents cfe2633 + c9208c6 commit 8bfea9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Clutch.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cd $PROJECT_DIR/Clutch;\nmake clean &> /dev/null;\nif [ \"$CONFIGURATION\" == \"Debug\" ]; then\nmake debug;\nelse\nmake;\nfi";
shellScript = "cd \"$PROJECT_DIR/Clutch\"\nmake clean >/dev/null 2>&1\nif [ \"$CONFIGURATION\" = 'Debug' ]; then\n make debug\nelse\n make\nfi";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit 8bfea9b

Please sign in to comment.