Fix edge channel version string
This commit is contained in:
parent
f2edcca54b
commit
ccf5494f67
4
Makefile
4
Makefile
|
@ -55,7 +55,11 @@ SNAPSHOT_VERSION=$(RELEASE_VERSION)-SNAPSHOT-$(COMMIT)
|
||||||
# Set proper version
|
# Set proper version
|
||||||
VERSION=
|
VERSION=
|
||||||
ifeq ($(TAG_NAME),$(shell git describe --abbrev=4))
|
ifeq ($(TAG_NAME),$(shell git describe --abbrev=4))
|
||||||
|
ifeq ($(CHANNEL),edge)
|
||||||
|
VERSION=$(SNAPSHOT_VERSION)
|
||||||
|
else
|
||||||
VERSION=$(RELEASE_VERSION)
|
VERSION=$(RELEASE_VERSION)
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
VERSION=$(SNAPSHOT_VERSION)
|
VERSION=$(SNAPSHOT_VERSION)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue