In XCode I made a new run script build phase and want to do one of two things:
edit it delete it
I can see how to add a new one, but not how to access the existing one?
Any help appreciated, thanks :)
In XCode I made a new run script build phase and want to do one of two things:
edit it delete it
I can see how to add a new one, but not how to access the existing one?
Any help appreciated, thanks :)
In xcode project tree, click on targets, then pick the target for which you added script. Each time you add new script/event it will show up as a new grey folder in target's subtree. Pick folder named 'Run Script', right click, select 'Get info': script body will be in 'General' tab.
If you have multiple scripts, you probably would want to rename them in that target tree.
Found it!
In the XCode Build System Guide look at Adding and Deleting Build Phases.
In your XCode project, under Targets in the Groups and Files pane you can see the Run Script... double click to edit, delete to delete.
// :)