diff options
Diffstat (limited to 'doc/gen_manpage.go')
-rw-r--r-- | doc/gen_manpage.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/gen_manpage.go b/doc/gen_manpage.go index 0c7a501a..eef0ff66 100644 --- a/doc/gen_manpage.go +++ b/doc/gen_manpage.go @@ -8,6 +8,7 @@ import ( "os" "path" "path/filepath" + "time" "github.com/MichaelMure/git-bug/commands" "github.com/spf13/cobra/doc" @@ -17,9 +18,12 @@ func main() { cwd, _ := os.Getwd() dir := path.Join(cwd, "doc", "man") + date := time.Date(2019, 4, 1, 12, 0, 0, 0, time.UTC) + header := &doc.GenManHeader{ Title: "GIT-BUG", Section: "1", + Date: &date, Source: "Generated from git-bug's source code", } |