mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
15 lines
305 B
Bash
Executable File
15 lines
305 B
Bash
Executable File
# 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
|
|
|