Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hariso committed Jan 15, 2025
1 parent d99787d commit 2adf914
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/tag.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ while true; do
read -p "Are you sure you want to continue? [y/n]" yn
echo
case $yn in
[Yy]* ) git tag -a $V_TAG -m "Release: $V_TAG" && git push origin $V_TAG; break;;
[Yy]* )
git tag -a $V_TAG -m "Release: $V_TAG"
# git push origin $V_TAG
break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
Expand Down

0 comments on commit 2adf914

Please sign in to comment.