From 088f2f7e3e6881eae6eed63eae2e6da279a3d35f Mon Sep 17 00:00:00 2001 From: Ryan Parman Date: Fri, 1 Mar 2024 11:11:52 -0700 Subject: [PATCH] build: Cleanup the version when tagging a release in the Makefile. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 088b1f24..6b14e001 100644 --- a/Makefile +++ b/Makefile @@ -404,12 +404,12 @@ changelog: tag: @ if [ $$(git status -s -uall | wc -l) != 1 ]; then echo 'ERROR: Git workspace must be clean.'; exit 1; fi; - @ $(ECHO) "This release will be tagged as: v$(NEXT_VERSION)" + @ $(ECHO) "This release will be tagged as: $(NEXT_VERSION)" @ $(ECHO) "---------------------------------------------------------------------" @ read -p "Press any key to continue, or press Control+C to cancel. " x; @ $(ECHO) " " - @ chag update v$(NEXT_VERSION) + @ chag update $(NEXT_VERSION) @ $(ECHO) " " @ $(ECHO) "These are the contents of the CHANGELOG for this release. Are these correct?" @@ -422,5 +422,5 @@ tag: @ $(ECHO) " " git add . - git commit -a -m "relprep: Preparing the v$(NEXT_VERSION) release." --no-verify + git commit -a -m "relprep: Preparing the $(NEXT_VERSION) release." --no-verify chag tag --sign