mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
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...")
|
||||
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…
Reference in a new issue