Skip to content

Commit

Permalink
Fixed version name in tag script for crystal shards compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
mraffonso committed Mar 19, 2024
1 parent 47088e8 commit e7cf57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/tag
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ print_commands() {
echo
echo "Commands:"
echo
echo " git tag -a "$1" -m \"Tagged $1\""
echo " git tag -a \"v$1\" -m \"Tagged v$1\""
echo " git push origin --tags"
echo
}
Expand Down Expand Up @@ -92,7 +92,7 @@ confirm_tagging() {
}

tag_commit() {
git tag -a "$1" -m "Tagged $1"
git tag -a "v$1" -m "Tagged v$1"
git push origin --tags
}

Expand Down

0 comments on commit e7cf57d

Please sign in to comment.