From 5a09313066f5594ca9e3917c00821e443dcba7bc Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 8 May 2024 20:59:41 +0200 Subject: Rename gitDescribe to version This variable will be the only used representation for version information. It can trivially be used for an equality check. Further data as semantic versioning must be parsed from this string. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3e638f7..f13818a 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ VERSION := $(shell git describe --dirty --always) all: $(BUILD_DIR)/$(TARGET_EXEC) $(BUILD_DIR)/$(TARGET_EXEC): - go build -ldflags "-X main.gitDescribe=$(VERSION)" -o $@ $(MODULE_NAME) + go build -ldflags "-X main.version=$(VERSION)" -o $@ $(MODULE_NAME) .PHONY: debug debug: - go run -ldflags "-X main.gitDescribe=$(VERSION)" $(MODULE_NAME) + go run -ldflags "-X main.version=$(VERSION)" $(MODULE_NAME) .PHONY: clean clean: -- cgit v1.2.3-70-g09d2