Output config saving errors

pull/24/head
Matt Baer 6 years ago
parent 1a6f61690e
commit 6bdb7a1c1c
  1. 6
      app.go

@ -42,7 +42,11 @@ func Serve() {
log.Info("Creating configuration...")
c := config.New()
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)
}

Loading…
Cancel
Save