diff --git a/utils/utils.go b/utils/utils.go index bbfa4515..b41c1356 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -175,8 +175,11 @@ func Run(c *config.Config) { viper.Reset() commands.HugoCmd.ParseFlags(c.Args) - // EXPERIENCE: using those args instead of nil, nil - commands.HugoCmd.Run(commands.HugoCmd, make([]string, 0)) + err = commands.HugoCmd.RunE(nil, nil) + + if err != nil { + log.Print(err) + } err = os.Chdir(cwd)