From e14a8565df6c19af626f6e92eb82276ce3027195 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Wed, 25 Sep 2024 18:09:25 -0600 Subject: [PATCH] Added --always flag to git_tag to prevent erroring out --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2c18932..2279b8a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ DOCKER ?= docker prog ?= configurator -git_tag := $(shell git describe --abbrev=0 --tags) +git_tag := $(shell git describe --abbrev=0 --tags --always) sources := main.go $(wildcard cmd/*.go) plugin_source_prefix := pkg/generator/plugins plugin_sources := $(filter-out %_test.go,$(wildcard $(plugin_source_prefix)/*/*.go))