mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-16 02:33:26 +03:00
31 lines
435 B
Go
31 lines
435 B
Go
// +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",
|
|
}
|
|
|
|
fmt.Println("Generating manpage ...")
|
|
|
|
err := doc.GenManTree(commands.RootCmd, header, filepath)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|