Fixes issue in makefile that made it so VERSION file was never referenced

This commit is contained in:
Sloom Sloum Sluom IV 2020-05-28 22:30:48 -07:00
parent d7a08268b0
commit 573eb0d230
1 changed files with 1 additions and 1 deletions

View File

@ -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