Question

I have a Run Script phase configured for my project's target. It is run on every build. Is it possible to temporarily disable this script without removing it from the target?

Was it helpful?

Solution

I don't know of any sort of "disabled" state. However, it's a bash script, so you could just add exit 0 at the top while you want it disabled.

OTHER TIPS

Or if it's a single line script you could just add a # at the beginning to comment the statement out.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top