projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fee5519
)
Print feedback for `hugo gendoc`
author
Anthony Fok
<foka@debian.org>
Sat, 8 Aug 2015 04:26:28 +0000
(22:26 -0600)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Sun, 9 Aug 2015 15:58:01 +0000
(17:58 +0200)
commands/gendoc.go
patch
|
blob
|
history
diff --git
a/commands/gendoc.go
b/commands/gendoc.go
index 34f9c1229f48d7ba184f2743bf14a725d3b16d2e..fa0a7b9be67b1a3d7397d6d6d92ef2bd3836ea33 100644
(file)
--- 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.")
},
}