From 0e4e2133521eaa832f2093ec0d31b41f8f18294e Mon Sep 17 00:00:00 2001 From: Denis Kirillov Date: Mon, 11 Jul 2022 17:15:03 +0300 Subject: [PATCH] [#20] Update VERSION in Makefile Signed-off-by: Denis Kirillov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fe13bdd..8dafff8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #!/usr/bin/make -f REPO ?= "$(shell go list -m)" -VERSION ?= "$(shell git describe --tags 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")" +VERSION ?= "$(shell git describe --tags --dirty --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")" HUB_IMAGE ?= nspccdev/neofs-rest-gw HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')"