summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-01 13:58:54 +0200
committerxengineering <me@xengineering.eu>2024-05-01 13:58:54 +0200
commit1e2a3377e43786e25dc03b8612513d47f8dfb3c6 (patch)
treeb1dbe786260a9cd47e9a9af3549e95df27184179 /main.go
parent390642f9bbc12f0b435f343fc35f4a47c5ec7680 (diff)
downloadceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.tar
ceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.tar.zst
ceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.zip
Add --config flag
This re-enables config file support.
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.go b/main.go
index d43edd2..4a45586 100644
--- a/main.go
+++ b/main.go
@@ -21,6 +21,10 @@ import (
func main() {
flag.Parse()
+ if config.Path != "" {
+ config.Read()
+ }
+
if printVersion {
if gitDescribe == "" {
log.Fatal("This build has no version information")