From 573eb0d2303d6d4ab6e4a638b3e7b15a380bb2ac Mon Sep 17 00:00:00 2001 From: sloum Date: Thu, 28 May 2020 22:30:48 -0700 Subject: [PATCH] Fixes issue in makefile that made it so VERSION file was never referenced --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5759793..e160118 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ test : GOCMD := go1.11.13 BUILD_TIME := ${shell date "+%Y-%m-%dT%H:%M%z"} # If VERSION is empty or not defined use the contents of the VERSION file -VERSION := ${shell git describe --tags 2> /dev/null} +VERSION := ${shell git describe --exact-match 2> /dev/null} ifndef VERSION VERSION := ${shell cat ./VERSION} endif