summaryrefslogtreecommitdiff
path: root/version.go
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 /version.go
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.
Diffstat (limited to 'version.go')
-rw-r--r--version.go10
1 files changed, 5 insertions, 5 deletions
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
}