This commit is contained in:
Henrique Dias 2015-12-13 10:06:02 +00:00
parent d1351359b5
commit 63a50bfae5

View File

@ -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)