yamldocs: add description to base command
Currently the documentation uses a special case for this command, so adding a description to the YAML in order to remove that special case. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Родитель
48b521fef2
Коммит
9b5225d092
|
@ -21,7 +21,10 @@ func generateCliYaml(opts *options) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
cmd := &cobra.Command{Use: "docker"}
|
||||
cmd := &cobra.Command{
|
||||
Use: "docker [OPTIONS] COMMAND [ARG...]",
|
||||
Short: "The base command for the Docker CLI.",
|
||||
}
|
||||
commands.AddCommands(cmd, dockerCli)
|
||||
disableFlagsInUseLine(cmd)
|
||||
source := filepath.Join(opts.source, descriptionSourcePath)
|
||||
|
|
Загрузка…
Ссылка в новой задаче