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 ++-- main.go | 2 +- server.go | 2 +- version.go | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) 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: diff --git a/main.go b/main.go index 84a0761..223a7df 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ func main() { flag.Parse() if printVersion { - fmt.Println(gitDescribe) + fmt.Println(version) os.Exit(0) } diff --git a/server.go b/server.go index 32d22b1..570d8ed 100644 --- a/server.go +++ b/server.go @@ -25,7 +25,7 @@ func NewServer(addr string) Server { r.PathPrefix("/static/"). Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) - r.HandleFunc("/version", view.VersionRead(gitDescribe)).Methods(`GET`) + r.HandleFunc("/version", view.VersionRead(version)).Methods(`GET`) r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`) diff --git a/version.go b/version.go index 94ee141..f9a997e 100644 --- a/version.go +++ b/version.go @@ -4,10 +4,10 @@ import ( "log" ) -var gitDescribe string +var version string func init() { - if gitDescribe == "" { + if version == "" { log.Fatal("No version information passed to this via build flags") } } -- cgit v1.2.3-70-g09d2