-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgenerate_manpages.go
74 lines (62 loc) · 1.34 KB
/
generate_manpages.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"github.com/gesquive/git-user/cmd"
"github.com/spf13/cobra/doc"
)
var version = "v2.0.6-dev"
func usage() {
fmt.Println("usage: genman <output_path>")
}
func main() {
destinationPath, _ := os.Getwd()
if len(os.Args) > 2 {
usage()
os.Exit(1)
}
if len(os.Args) == 2 {
destinationPath = os.Args[1]
}
header := &doc.GenManHeader{
Title: "GIT-USER",
Section: "1",
Manual: "Git Manual",
Source: fmt.Sprintf("git-user %s", version),
}
cmd.RootCmd.DisableAutoGenTag = true
fmt.Printf("Generating documentation for git-user\n")
err := doc.GenManTree(cmd.RootCmd, header, destinationPath)
if err != nil {
fmt.Printf("%s\n", err)
os.Exit(2)
}
//Remove all of the double blank lines from output docs
err = filepath.Walk(destinationPath, func(path string, f os.FileInfo, err error) error {
stripFile(path)
return nil
})
if err != nil {
fmt.Printf("Could not clean up all the files\n")
fmt.Printf("%s", err)
}
}
func stripFile(path string) error {
input, err := ioutil.ReadFile(path)
if err != nil {
return err
}
regex, err := regexp.Compile("\n{2,}")
if err != nil {
return err
}
output := regex.ReplaceAllString(string(input), "\n")
err = ioutil.WriteFile(path, []byte(output), 0644)
if err != nil {
return err
}
return nil
}