We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 962c9a8 commit 11625c8Copy full SHA for 11625c8
1 file changed
Makefile
@@ -20,7 +20,7 @@ tag: ## Tag current version (from Cargo.toml) and push
20
@read -p "Tagging with v$(VERSION), are you sure? [Y/n] " ans; \
21
ans=$${ans:-Y}; \
22
if [ "$$ans" = "Y" ] || [ "$$ans" = "y" ]; then \
23
- git tag v$(VERSION) && git push origin v$(VERSION); \
+ git tag -a v$(VERSION) -m "v$(VERSION)" && git push origin v$(VERSION); \
24
else \
25
echo "Aborted."; \
26
fi
0 commit comments