aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gen_manpage.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-02-23 13:02:18 +0100
committerMichael Muré <batolettre@gmail.com>2019-03-01 22:40:28 +0100
commitdc1edf8e640f4d0f4d4a8bc01a7459ff8123705e (patch)
treecf9e3cb3b488e5836618a850c7ec463bb8a7cc66 /doc/gen_manpage.go
parentb8caddddc7aaf34b2da61c590fd1d9a0fae024fb (diff)
downloadgit-bug-dc1edf8e640f4d0f4d4a8bc01a7459ff8123705e.tar.gz
generator cleanup
Diffstat (limited to 'doc/gen_manpage.go')
-rw-r--r--doc/gen_manpage.go15
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/gen_manpage.go b/doc/gen_manpage.go
index 4147d915..0c7a501a 100644
--- a/doc/gen_manpage.go
+++ b/doc/gen_manpage.go
@@ -7,6 +7,7 @@ import (
"log"
"os"
"path"
+ "path/filepath"
"github.com/MichaelMure/git-bug/commands"
"github.com/spf13/cobra/doc"
@@ -14,7 +15,7 @@ import (
func main() {
cwd, _ := os.Getwd()
- filepath := path.Join(cwd, "doc", "man")
+ dir := path.Join(cwd, "doc", "man")
header := &doc.GenManHeader{
Title: "GIT-BUG",
@@ -24,7 +25,17 @@ func main() {
fmt.Println("Generating manpage ...")
- err := doc.GenManTree(commands.RootCmd, header, filepath)
+ files, err := filepath.Glob(dir + "/*.1")
+ if err != nil {
+ log.Fatal(err)
+ }
+ for _, f := range files {
+ if err := os.Remove(f); err != nil {
+ log.Fatal(err)
+ }
+ }
+
+ err = doc.GenManTree(commands.RootCmd, header, dir)
if err != nil {
log.Fatal(err)
}