Reputation: 438
How can a build script figure where xcodebuild places the resulting application when calling xcodebuild -scheme MyScheme archive ?
I understand that you can control the location via Xcode preferences but I would actually like to be able to specify this in the command line for my build script while keeping the default build location during development.
Upvotes: 2
Views: 1304
Reputation: 402
I have had minor luck with the following approaches:
BUILT_PRODUCTS_DIR
. I remember this was somewhat infuriating.Plenty of ways to skin a cat, but remember you always end up with stains in your carpet.
Upvotes: 1