Skip to content

Commit 7a1b5a0

Browse files
committed
Fix TAG set in Makefile
1 parent d0be544 commit 7a1b5a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GITTAG := $(shell git describe --abbrev=0 --tags ${GITTAG_COMMIT} 2>/dev/null ||
2929
# Branch from git
3030
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
3131

32-
TAG := $(GITTAG:v%=%)
32+
TAG := $(GITTAG)
3333
ifneq ($(COMMIT), $(GITTAG_COMMIT))
3434
TAG := $(COMMIT)
3535
endif

0 commit comments

Comments
 (0)