summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-08 20:59:41 +0200
committerxengineering <me@xengineering.eu>2024-05-08 20:59:41 +0200
commit5a09313066f5594ca9e3917c00821e443dcba7bc (patch)
treef1fd26e3e1b89e1d6cce28191716d8a2f19b5ea5
parent0368b6d0f7069be078ca6dba2c8bb3ed06d9f03a (diff)
downloadceres-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--Makefile4
-rw-r--r--main.go2
-rw-r--r--server.go2
-rw-r--r--version.go4
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")
}
}