fix: do not hard fail if no config

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2024-07-09 10:58:52 -03:00
commit 2288311e82
No known key found for this signature in database

View file

@ -433,6 +433,5 @@ func tryLoadConfigFromDefaultPlaces() {
}
if err := ensureConfigFile(); err != nil {
log.Error("Could not create default configuration", "error", err)
os.Exit(1)
}
}