Skip to content

Instantly share code, notes, and snippets.

@shauvik
Last active August 1, 2017 18:43
Show Gist options
  • Save shauvik/7468bbeda1d5727dd24770b49b90f60e to your computer and use it in GitHub Desktop.
Save shauvik/7468bbeda1d5727dd24770b49b90f60e to your computer and use it in GitHub Desktop.
Building UIKitCatalog -- all flavors
$ xcodebuild
$ xcodebuild -configuration Debug
$ xcodebuild -sdk iphonesimulator
$ xcodebuild -sdk iphonesimulator -configuration Debug
$ cd build
$ ls
Debug-iphoneos Release-iphoneos UIKitCatalog.build
Debug-iphonesimulator Release-iphonesimulator
$ for i in *-*; do cd $i; zip -r UIKitCatalog-$i.zip UIKitCatalog.app;cd ../; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment