We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29384a0 commit 226722cCopy full SHA for 226722c
Makefile
@@ -18,6 +18,7 @@ create-new-release:
18
@echo "Increasing version..."
19
@echo "Current version $(CURRENT_VERSION)"
20
@npm version $(PART) -m "Bumped from $(CURRENT_VERSION) to version %s"
21
- @echo $(shell git describe "$(shell git rev-list --tags --max-count=1)" --tags) > .version
22
- @echo "Increased version to $(shell cat .version)"
+ @$(eval NEW_VERSION=$(shell git describe "$(shell git rev-list --tags --max-count=1)" --tags))
+ @echo "Increased version to $(NEW_VERSION)"
23
+ @echo $(NEW_VERSION) > .version
24
0 commit comments