style: fix linting issues

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
Henrique Dias
2018-08-07 13:34:06 +01:00
parent 5afe2cc52d
commit b7022bdfe3
3 changed files with 6 additions and 10 deletions

View File

@@ -187,9 +187,6 @@ func (h Hugo) undraft(file string) error {
// Setup sets up the plugin.
func (h *Hugo) Setup() error {
var err error
if h.Exe, err = exec.LookPath("hugo"); err != nil {
return err
}
return nil
h.Exe, err = exec.LookPath("hugo")
return err
}