From ccf5494f679d254e8e896d67eb697653eabdb4c2 Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Wed, 22 Jul 2020 21:29:22 +0300 Subject: [PATCH] Fix edge channel version string --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 06a2749e..2819b80e 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,11 @@ SNAPSHOT_VERSION=$(RELEASE_VERSION)-SNAPSHOT-$(COMMIT) # Set proper version VERSION= ifeq ($(TAG_NAME),$(shell git describe --abbrev=4)) - VERSION=$(RELEASE_VERSION) + ifeq ($(CHANNEL),edge) + VERSION=$(SNAPSHOT_VERSION) + else + VERSION=$(RELEASE_VERSION) + endif else VERSION=$(SNAPSHOT_VERSION) endif