1# Only for use during the process of making official releases 2 3if [ -z "$1" ]; then 4 echo "No argument supplied" 5 exit 1 6fi 7 8VER=$1 9 10git tag -a ${VER} -m '${VER}'; git push --tags origin ${VER}; git push origin master 11 12echo Now run the internal tool: 13echo ppsspp-build --commit ${VER} --gold --sign-code 14 15 16