Improve error handling in commands
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 2 Dec 2015 10:42:53 +0000 (11:42 +0100)
committerAnthony Fok <foka@debian.org>
Wed, 2 Dec 2015 14:07:05 +0000 (07:07 -0700)
commit3f0f7eed68f44486c1e053bbce25c46c1d52a12f
tree4bafd37bcd2ede6fb1c7f5838679a345dae83668
parent6959b7fa80f22aead6fa8c9b8ff3c4b8cc222a30
Improve error handling in commands

Cobra, the CLI commander in use in Hugo, has some long awaited improvements in the error handling department.
This enables a more centralized error handling approach.

This commit introduces that by changing all the command funcs to `RunE`:

* The core part of the error logging, usage logging and `os.Exit(-1)` is now performed in one place and that one place only.
* The usage text is now only shown on invalid arguments etc. (user errors)

Fixes #1502
17 files changed:
commands/benchmark.go
commands/check.go
commands/convert.go
commands/genautocomplete.go
commands/gendoc.go
commands/genman.go
commands/hugo.go
commands/import.go [deleted file]
commands/import_jekyll.go
commands/limit_darwin.go
commands/list.go
commands/list_config.go
commands/new.go
commands/server.go
commands/undraft.go
commands/version.go
hugolib/site.go