In the Build step of my scheme, I execute a pre-action and post-action bash scripts. These work great.
Recently, I built my iOS app using xcodebuild in the terminal, and I immediately noticed that both bash scripts had some warnings or errors. From the command line, I could see several errors like this:
[full path]/prebuild.sh: line 17: [: =: unary operator expected
I fixed the scripts and continued. How can I see these errors in the Xcode IDE? I thoroughly reviewed (and searched) the Build output in the Report Navigator but, the "unary operator expected" error wasn't there. I have an Xcode Server and was able to find the "unary operator expected" error under Logs in "Raw Build Log" but there's no way that I would have ever noticed the error there. The "Raw Build Log" was 8999 lines long.
How can I expose bash script errors in the IDE (during the Build step for pre-actions and post-actions).
Is there a way to modify my script to ensure that error output is visible in the Xcode IDE. I'm afraid that I would have never found the script problems if I had not tried out xcodebuild.
Thanks,
Chuck