Skip to content

Instantly share code, notes, and snippets.

@tluyben
Created February 4, 2013 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tluyben/4706810 to your computer and use it in GitHub Desktop.
Save tluyben/4706810 to your computer and use it in GitHub Desktop.
iOS distribution; make an .ipa from an .app file.
#!/bin/sh
mkdir Payload
mv $1.app Payload/
zip -r $1.ipa Payload
rm -fR Paypload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment