From 9ac81c1dc442e42d9cd0cdf73afe2a1a352bd1bc Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Fri, 3 Feb 2023 21:50:32 -0500 Subject: [PATCH] change latest tag to v2.2.3-latest, won\'t conflict with 2.2.5 latest tag --- installer/create_installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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