summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-01 14:50:33 +0200
committerxengineering <me@xengineering.eu>2024-05-01 14:52:21 +0200
commit07f011bbbb22de9e7b4fd4af30fa0a92ee25b6d8 (patch)
tree0109c732116bfe180bf3ca8870530d44222ccfb1
parent1e2a3377e43786e25dc03b8612513d47f8dfb3c6 (diff)
downloadceres-07f011bbbb22de9e7b4fd4af30fa0a92ee25b6d8.tar
ceres-07f011bbbb22de9e7b4fd4af30fa0a92ee25b6d8.tar.zst
ceres-07f011bbbb22de9e7b4fd4af30fa0a92ee25b6d8.zip
Make build-time version information mandatory
This ensures that Ceres is never executed without Git version information. This removes the requirement to check for this on every use. To ensure the server does not work with an incompatible storage directory it is in every case needed to know the exact version of the running executable.
-rw-r--r--main.go3
-rw-r--r--version.go10
2 files changed, 5 insertions, 8 deletions
diff --git a/main.go b/main.go
index 4a45586..7b65bf4 100644
--- a/main.go
+++ b/main.go
@@ -26,9 +26,6 @@ func main() {
}
if printVersion {
- if gitDescribe == "" {
- log.Fatal("This build has no version information")
- }
fmt.Println(gitDescribe)
os.Exit(0)
}
diff --git a/version.go b/version.go
index c3cc266..94ee141 100644
--- a/version.go
+++ b/version.go
@@ -1,13 +1,13 @@
package main
-import "fmt"
+import (
+ "log"
+)
var gitDescribe string
-func version() (string, error) {
+func init() {
if gitDescribe == "" {
- return "", fmt.Errorf("No version information available")
+ log.Fatal("No version information passed to this via build flags")
}
-
- return gitDescribe, nil
}