Add shell directive to git_tag

This commit is contained in:
David Allen 2024-08-01 16:14:47 -06:00
parent 49fd6fb892
commit dcff41dd43
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -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))