Print feedback for `hugo gendoc` - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit c69835daba35ce52596d08dedbee84f4ac16a6e0
(DIR) parent fee5519129948d29584341f865e9e8cbe5668b83
(HTM) Author: Anthony Fok <foka@debian.org>
Date: Fri, 7 Aug 2015 22:26:28 -0600
Print feedback for `hugo gendoc`
Diffstat:
M commands/gendoc.go | 3 +++
1 file changed, 3 insertions(+), 0 deletions(-)
---
(DIR) diff --git 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.")
},
}