Created
March 28, 2016 09:12
-
-
Save morugu/30b9e6f0051cb414cbf2 to your computer and use it in GitHub Desktop.
ipa2dgate.sh
This file contains hidden or 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
#!/bin/sh | |
if [ "$1" = "" ] | |
then | |
echo "Usage: $0 <project directory path>" | |
exit | |
fi | |
PROJECT_DIR=$1 | |
cd ${PROJECT_DIR} | |
echo "change directory ${PROJECT_DIR}" | |
BUILD_RESULT=`ipa build` | |
echo ${BUILD_RESULT} | |
dgate push ./*.ipa | |
echo 'build and upload to Deploygate finish' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment