Skip to content

Commit

Permalink
build: Small updates to the Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Feb 5, 2024
1 parent b37591d commit e548051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -405,12 +405,12 @@ tag:
@ if [ $$(git status -s -uall | wc -l) != 1 ]; then echo 'ERROR: Git workspace must be clean.'; exit 1; fi;
NEXT_VERSION=$(shell git cliff --bump --unreleased --context | jq -r .[0].version)

@ $(ECHO) "This release will be tagged as: v${NEXT_VERSION}"
@ $(ECHO) "This release will be tagged as: v$(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 v$(NEXT_VERSION)
@ $(ECHO) " "

@ $(ECHO) "These are the contents of the CHANGELOG for this release. Are these correct?"
Expand All @@ -423,5 +423,5 @@ tag:
@ $(ECHO) " "

git add .
git commit -a -m "relprep: Preparing the v${NEXT_VERSION} release."
git commit -a -m "relprep: Preparing the v$(NEXT_VERSION) release."
chag tag --sign

0 comments on commit e548051

Please sign in to comment.