Skip to content

Commit 11625c8

Browse files
committed
Auto message in tag
1 parent 962c9a8 commit 11625c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tag: ## Tag current version (from Cargo.toml) and push
2020
@read -p "Tagging with v$(VERSION), are you sure? [Y/n] " ans; \
2121
ans=$${ans:-Y}; \
2222
if [ "$$ans" = "Y" ] || [ "$$ans" = "y" ]; then \
23-
git tag v$(VERSION) && git push origin v$(VERSION); \
23+
git tag -a v$(VERSION) -m "v$(VERSION)" && git push origin v$(VERSION); \
2424
else \
2525
echo "Aborted."; \
2626
fi

0 commit comments

Comments
 (0)