diff --git a/installer/create_installer.sh b/installer/create_installer.sh index f1e95d2b4c..e3b3e19113 100755 --- a/installer/create_installer.sh +++ b/installer/create_installer.sh @@ -19,7 +19,7 @@ echo Building installer for version $VERSION echo "Be certain that you're in the 'installer' directory before continuing." read -p "Press any key to continue, or CTRL-C to exit..." -read -e -p "Commit and tag this repo with ${VERSION} and 'latest'? [n]: " input +read -e -p "Commit and tag this repo with ${VERSION} and 'v2.3-latest'? [n]: " input RESPONSE=${input:='n'} if [ "$RESPONSE" == 'y' ]; then git commit -a @@ -28,7 +28,7 @@ if [ "$RESPONSE" == 'y' ]; then echo "Existing/invalid tag" exit -1 fi - git push origin :refs/tags/latest + git push origin :refs/tags/v2.3-latest git tag -fa latest fi