mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Add a little utility shell script
This commit is contained in:
parent
bc98cf6bcb
commit
9dcaf4e761
14
Tools/tag_release.sh
Executable file
14
Tools/tag_release.sh
Executable file
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user