CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Tools/tag_release.sh
Views: 1401
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