From dcff41dd4350e52422d82b05638e3892735094e0 Mon Sep 17 00:00:00 2001 From: David Allen Date: Thu, 1 Aug 2024 16:14:47 -0600 Subject: [PATCH] Add shell directive to git_tag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5273190..af99754 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ DOCKER ?= docker prog ?= configurator -git_tag := $(git describe --abbrev=0 --tags) +git_tag := $(shell git describe --abbrev=0 --tags) sources := main.go $(wildcard cmd/*.go) plugin_source_prefix := pkg/generator/plugins plugin_sources := $(filter-out %_test.go,$(wildcard $(plugin_source_prefix)/*/*.go))