Created
February 4, 2015 16:21
-
-
Save dodikk/fafc88dd0c6d2e260cf0 to your computer and use it in GitHub Desktop.
xcodebuild do-s and don't-s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xcodebuild -workspace XYZ -target xyzApp | |
## это - хрень. Не делай так | |
xcodebuild -project XYZ.xcodeproj -scheme abcApp | |
## это - тоже хрень. | |
xcodebuild -workspace XYZ -scheme abcApp | |
## так - нормально, но нужна shared scheme | |
xcodebuild -project XYZ.xcodeproj -target xyzApp | |
## так - олдскульно, ничего не нужно |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment