fix git tag bug

This commit is contained in:
wy65701436 2017-03-28 17:40:33 -07:00
parent b7340ebbce
commit 626123b66f
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ VERSIONFILEPATH=$(CURDIR)
VERSIONFILENAME=VERSION
GITCMD=$(shell which git)
GITTAG=$(GITCMD) describe --tags
GITTAGVERSION=$(shell $(GITTAG))
GITTAGVERSION=$(shell git describe --tags || echo UNKNOWN)
ifeq ($(DEVFLAG), true)
VERSIONTAG=dev
else