commands: Make commands.Execute return a Response object
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 18:17:28 +0000 (20:17 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 18:37:08 +0000 (20:37 +0200)
commit96689a5c319f720368491226f034d0ff9585217c
treef2e14fcaa31154d72d50f9b75cce78ceab9dcfbc
parente7010c1b621d68ee53411a5ba8143d07b976d9fe
commands: Make commands.Execute return a Response object

We have no global `Hugo` object no more (yay!), and there are some external tools that depends on that value.

These tools need to use get that value from `Response.Result`.

Note that `commands.Execute` now also takes the arguments as a string slice. This should also make it easier to use, not having to modify `os.Args`.

This commit also wraps up this particular issue. Phew!

Test coverage in /commands before: 14.4%
Now:  53.5%

Still work to do, now it is at least possible.

Closes #4598
commands/commands.go
commands/commands_test.go
commands/hugo.go
main.go