Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Command = &cobra.Command{ Use: "man", Short: "Generate man pages and exit", RunE: func(cmd *cobra.Command, _ []string) error { rootCmd := cmd.Root() disableAutoGenTag(rootCmd) if err := os.MkdirAll(manDir, os.FileMode(0o755)); err != nil { return fault.Wrap(err) } if err := doc.GenManTree(rootCmd, nil, manDir); err != nil { return fault.Wrap(err) } return nil }, } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.