Is possible to add app to iPA function? because some application is not ipa file, so it will be good to have ipa
!/bin/bash
if [ -d "Payload" ]; then
rm -fr Payload/*
else
mkdir Payload
fi
if you'd rather copy the .app file, then replace the next line with:
cp -r $1 Payload
mv $1 Payload
zip -r $2.ipa Payload
rm -fr Payload
Is possible to add app to iPA function? because some application is not ipa file, so it will be good to have ipa
!/bin/bash
if [ -d "Payload" ]; then
rm -fr Payload/*
else
mkdir Payload
fi
if you'd rather copy the .app file, then replace the next line with:
cp -r $1 Payload
mv $1 Payload
zip -r $2.ipa Payload
rm -fr Payload