do not auto-generate date updates in cli markdown (#526)

This commit is contained in:
Keepers 2022-08-12 10:43:19 -06:00 committed by GitHub
parent e76860fd80
commit 9f1c8aa64c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,9 +20,10 @@ var cliMarkdownDir string
// The root-level command.
// `corso <command> [<subcommand>] [<service>] [<flag>...]`
var cmd = &cobra.Command{
Use: "generate",
Short: "Autogenerate Corso documentation.",
Run: genDocs,
Use: "generate",
Short: "Autogenerate Corso documentation.",
DisableAutoGenTag: true,
Run: genDocs,
}
func main() {