Skip to content

Commit

Permalink
Fix bump in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
minuscorp committed Jul 31, 2020
1 parent 7ecff10 commit 5c87d93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ brew_push: get_sha
brew bump-formula-pr --url=https://github.com/minuscorp/$(TOOL_NAME)/archive/$(VERSION).tar.gz --sha256=$$SHA $(TOOL_NAME)

bump:
BUMP_VERSION=$(shell git describe --tags --abbrev=0 | awk -F. '{$NF+=1; OFS="."; print $0}'); \
git tag $$BUMP_VERSION \
BUMP_VERSION=$(shell git describe --tags --abbrev=0 | awk -F. '{$$NF+=1; OFS="."; print $$0}'); \
git tag $$BUMP_VERSION; \
git push origin $$BUMP_VERSION

0 comments on commit 5c87d93

Please sign in to comment.