From 07f011bbbb22de9e7b4fd4af30fa0a92ee25b6d8 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 1 May 2024 14:50:33 +0200 Subject: 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. --- main.go | 3 --- version.go | 10 +++++----- 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 } -- cgit v1.2.3-70-g09d2