Skip to content

Commit

Permalink
No reason to auto-increment on every build... Was right originally
Browse files Browse the repository at this point in the history
  • Loading branch information
asergeyev committed Jan 28, 2019
1 parent 0440211 commit 9017566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LAST_PATCH_VERSION:=$(shell git ls-remote git@github.com:joewalnes/websocketd.gi



VERSION_PATCH:=$(shell expr $$(( $(or $(LAST_PATCH_VERSION),-1) + 1 )))
VERSION_PATCH:=$(or $(LAST_PATCH_VERSION),0)
RELEASE_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)

GO_VERSION=1.11.5
Expand Down

0 comments on commit 9017566

Please sign in to comment.