Print feedback for `hugo gendoc`
authorAnthony Fok <foka@debian.org>
Sat, 8 Aug 2015 04:26:28 +0000 (22:26 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 9 Aug 2015 15:58:01 +0000 (17:58 +0200)
commands/gendoc.go

index 34f9c1229f48d7ba184f2743bf14a725d3b16d2e..fa0a7b9be67b1a3d7397d6d6d92ef2bd3836ea33 100644 (file)
@@ -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.")
        },
 }