diff options
author | xengineering <me@xengineering.eu> | 2024-05-08 20:59:41 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-08 20:59:41 +0200 |
commit | 5a09313066f5594ca9e3917c00821e443dcba7bc (patch) | |
tree | f1fd26e3e1b89e1d6cce28191716d8a2f19b5ea5 | |
parent | 0368b6d0f7069be078ca6dba2c8bb3ed06d9f03a (diff) | |
download | ceres-5a09313066f5594ca9e3917c00821e443dcba7bc.tar ceres-5a09313066f5594ca9e3917c00821e443dcba7bc.tar.zst ceres-5a09313066f5594ca9e3917c00821e443dcba7bc.zip |
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.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | server.go | 2 | ||||
-rw-r--r-- | version.go | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -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: @@ -16,7 +16,7 @@ func main() { flag.Parse() if printVersion { - fmt.Println(gitDescribe) + fmt.Println(version) os.Exit(0) } @@ -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`) @@ -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") } } |