update Hugo calls

This commit is contained in:
Henrique Dias
2016-02-20 22:33:10 +00:00
parent e8874fabf1
commit 454c59e8a3
4 changed files with 6 additions and 5 deletions

View File

@@ -62,7 +62,7 @@ func POST(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error)
args = append(args, "--kind", archetype)
}
if err := utils.RunCommand("hugo", args, c.Path); err != nil {
if err := utils.RunCommand(c.Hugo, args, c.Path); err != nil {
return http.StatusInternalServerError, err
}
} else {