blob: 4147d9153560d3be1de5cca822ef7f5fe7788acd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// +build ignore
package main
import (
"fmt"
"log"
"os"
"path"
"github.com/MichaelMure/git-bug/commands"
"github.com/spf13/cobra/doc"
)
func main() {
cwd, _ := os.Getwd()
filepath := path.Join(cwd, "doc", "man")
header := &doc.GenManHeader{
Title: "GIT-BUG",
Section: "1",
Source: "Generated from git-bug's source code",
}
fmt.Println("Generating manpage ...")
err := doc.GenManTree(commands.RootCmd, header, filepath)
if err != nil {
log.Fatal(err)
}
}
|