Skip to content

Commit

Permalink
Add a little utility shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Sep 28, 2023
1 parent bc98cf6 commit 9dcaf4e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Tools/tag_release.sh
@@ -0,0 +1,14 @@
# Only for use during the process of making official releases

if [ -z "$1" ]; then
echo "No argument supplied"
exit 1
fi

VER=$1

git tag -a ${VER} -m '${VER}'; git push --tags origin ${VER}; git push origin master

echo Now run the internal tool:
echo ppsspp-build --commit ${VER} --gold --sign-code

0 comments on commit 9dcaf4e

Please sign in to comment.