summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-30 20:52:41 +0200
committerxengineering <me@xengineering.eu>2024-05-01 10:32:34 +0200
commit01699e3c9339cd7880f632be088d770225b84d68 (patch)
tree17acd3d74f9352f3d665e7d0e6e1ae9e80d4d66d /main.go
parent581feffe944a5eeb42f4cba3e4d24f0e1d5b0b3f (diff)
downloadceres-01699e3c9339cd7880f632be088d770225b84d68.tar
ceres-01699e3c9339cd7880f632be088d770225b84d68.tar.zst
ceres-01699e3c9339cd7880f632be088d770225b84d68.zip
Add --version flag
This allows to identify the version of a Ceres executable build.
Diffstat (limited to 'main.go')
-rw-r--r--main.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.go b/main.go
index 1071aef..2c39239 100644
--- a/main.go
+++ b/main.go
@@ -3,6 +3,8 @@ package main
import (
"context"
"embed"
+ "flag"
+ "fmt"
"log"
"net/http"
"os"
@@ -17,7 +19,15 @@ import (
)
func main() {
- parseFlags()
+ flag.Parse()
+
+ if printVersion {
+ if gitDescribe == "" {
+ log.Fatal("This build has no version information")
+ }
+ fmt.Println(gitDescribe)
+ os.Exit(0)
+ }
model.InitStorage()
defer model.RemoveStorage()