Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Tools/tag_release.sh
3185 views
1
# Only for use during the process of making official releases
2
3
if [ -z "$1" ]; then
4
echo "No argument supplied"
5
exit 1
6
fi
7
8
VER=$1
9
10
git tag -a ${VER} -m '${VER}'; git push --tags origin ${VER}; git push origin master
11
12
echo Now run the internal tool:
13
echo ppsspp-build --commit ${VER} --gold --sign-code
14
15
16