From c69835daba35ce52596d08dedbee84f4ac16a6e0 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Fri, 7 Aug 2015 22:26:28 -0600 Subject: [PATCH] Print feedback for `hugo gendoc` --- commands/gendoc.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/gendoc.go b/commands/gendoc.go index 34f9c1229..fa0a7b9be 100644 --- a/commands/gendoc.go +++ b/commands/gendoc.go @@ -5,6 +5,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/hugo/helpers" "github.com/spf13/hugo/hugofs" + jww "github.com/spf13/jwalterweatherman" "path" "path/filepath" "strings" @@ -51,7 +52,9 @@ for rendering in Hugo.`, return "/commands/" + strings.ToLower(base) + "/" } + jww.FEEDBACK.Println("Generating Hugo command-line documentation in", gendocdir, "...") cobra.GenMarkdownTreeCustom(cmd.Root(), gendocdir, prepender, linkHandler) + jww.FEEDBACK.Println("Done.") }, }