diff options
| author | Jeff Carr <[email protected]> | 2024-10-25 17:01:30 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-25 17:01:30 -0500 |
| commit | 9b94785cd2ddd100553f17763f5318909dc16dc8 (patch) | |
| tree | 080c50d2f3ed9e2dbf411261927490caead10b5f /main.go | |
| parent | 4d43c36db5d87fcd8a30242e424017468a7c48c0 (diff) | |
start date works on events
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -47,7 +47,11 @@ func main() { me.events.Uuid = u.String() me.events.Version = "dirty v1" - cfgfile() + err := cfgfile() + if err != nil { + log.Warn("reading config file failed", err) + os.Exit(-1) + } // sanity check the droplets checkDroplets(false) |
