ipa2dgate.sh
This file contains 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