From: Anthony Fok Date: Sat, 28 Nov 2015 14:42:40 +0000 (-0700) Subject: Use MkdirAll instead of Mkdir in `hugo gen doc` X-Git-Tag: v0.16~498 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e1af7cb9d06933f593661c498ed2f05a21286e87;p=brevno-suite%2Fhugo Use MkdirAll instead of Mkdir in `hugo gen doc` Also print a feedback if the path does not exist and needs to be created. --- diff --git a/commands/gendoc.go b/commands/gendoc.go index 56320831..eaea51a9 100644 --- a/commands/gendoc.go +++ b/commands/gendoc.go @@ -50,7 +50,8 @@ for rendering in Hugo.`, gendocdir += helpers.FilePathSeparator } if found, _ := helpers.Exists(gendocdir, hugofs.OsFs); !found { - hugofs.OsFs.Mkdir(gendocdir, 0777) + jww.FEEDBACK.Println("Directory", gendocdir, "does not exist, creating...") + hugofs.OsFs.MkdirAll(gendocdir, 0777) } now := time.Now().Format(time.RFC3339) prepender := func(filename string) string {