Skip to content

Commit

Permalink
Fix trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenskeiner committed Jul 5, 2024
1 parent 2b3aea1 commit 33702e1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions script/release
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,12 @@ echo -e "${GREEN}Tagged: v$major.$minor${OFF}"
git tag -a "v$major.$minor.$patch" -m "v$major.$minor.$patch"
echo -e "${GREEN}Tagged: v$major.$minor.$patch${OFF}"

# Push the new tag to the remote
git push origin :"v$major"
git push origin "v$major"
git push origin :"v$major.$minor"
git push origin "v$major.$minor"
# Push new tags to the remote.
# May overwrite existing tags for partial versions numbers.
git push origin :"v$major"
git push origin "v$major"
git push origin :"v$major.$minor"
git push origin "v$major.$minor"
git push origin "v$major.$minor.$patch"
echo -e "${GREEN}Release tag pushed to remote${OFF}"
echo -e "${GREEN}Done!${OFF}"

0 comments on commit 33702e1

Please sign in to comment.