Output config saving errors
This commit is contained in:
parent
1a6f61690e
commit
6bdb7a1c1c
1 changed files with 5 additions and 1 deletions
6
app.go
6
app.go
|
@ -42,7 +42,11 @@ func Serve() {
|
||||||
log.Info("Creating configuration...")
|
log.Info("Creating configuration...")
|
||||||
c := config.New()
|
c := config.New()
|
||||||
log.Info("Saving configuration...")
|
log.Info("Saving configuration...")
|
||||||
config.Save(c)
|
err := config.Save(c)
|
||||||
|
if err != nil {
|
||||||
|
log.Error("Unable to save configuration: %v", err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue