Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Commit ddeb42a

Browse files
simonlordprydie
authored andcommitted
Fix how VERSION var is set in Makefile for build-release workflow on Wercker (#127)
This allows setting release version string as env var on Wercker before running the build-release workflow. Found whilst releasing 0.1.1 off release-0.1 branch
1 parent 56bca2d commit ddeb42a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
ifdef WERCKER
1616
# Insert swear words about mysql group replication and hostname length. Arghh..
17-
VERSION := ${WERCKER_GIT_COMMIT}
17+
VERSION ?= ${WERCKER_GIT_COMMIT}
1818
TENANT := "oracle"
1919
else
2020
NEW_NAMESPACE ?= e2e-${USER}

0 commit comments

Comments
 (0)