Well I finally updated iTunes and lost the ability to create an .ipa. I made
a right click context item in finder to get one click .ipa creation back.

If anyone want this:

1) Open up the Automater
2) Create new
3) Select "Run Shell Script" from left pane
4) Change "Pass input:" to "as arguments"
5) Paste in this script

current_path=$(dirname "$1")
cd "$current_path"

for f in "$@"
do
mkdir Payload
cp -r "$f" Payload/
base=$(basename $f)
base2="${base%.*}"
zip -r "$base2".zip Payload/
mv "$base2".zip "$base2".ipa
rm -R Payload/
done


6) Save and name it "Create ipa"


That's it.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to