Xcode Run Script Permission Denied

Running a script in Xcode while compiling is a great way to have multiple targets with different resource and alike. After adding your script you might run into a permission denied error.

Xcode Run Script Permission Denied

You need to add permission to the file. Open up a terminal and navigate to the location of the .sh file. Now use chmod

chmod 755 targetSetup.sh

Xcode Run Script Permission Denied

Now the permission is set so it can be executed in Xcode.

For setting up a run script in Xcode take a look here http://runscriptbuildphase.com/

Step by step: http://www.codza.com/free-iphone-app-version-from-the-same-xcode-project and further tips http://yeahrightkeller.com/2008/xcode-run-script-build-phase-tip/