From 7a1b5a0ad626e2fab5d373e838b92f10dfc66a4e Mon Sep 17 00:00:00 2001 From: Sergio Ballesteros Date: Wed, 19 Jan 2022 17:01:37 +0100 Subject: [PATCH] Fix TAG set in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17e5e08d2..9f6f7e08b 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ GITTAG := $(shell git describe --abbrev=0 --tags ${GITTAG_COMMIT} 2>/dev/null || # Branch from git BRANCH=$(shell git rev-parse --abbrev-ref HEAD) -TAG := $(GITTAG:v%=%) +TAG := $(GITTAG) ifneq ($(COMMIT), $(GITTAG_COMMIT)) TAG := $(COMMIT) endif