From 5c87d93635af18d43f9749023d3ff137b5a0e428 Mon Sep 17 00:00:00 2001 From: Jorge Revuelta Date: Fri, 31 Jul 2020 20:30:00 +0200 Subject: [PATCH] Fix bump in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 757731b..725b363 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file