cli: include new commands in help text (fix #4623) (#4626)

This commit is contained in:
Can Taşpınar 2020-05-05 06:51:20 +03:00 committed by GitHub
parent 9f4461b223
commit 9d815598cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,7 @@ Read more about the session argument for computed fields in the [docs](https://h
(Add entries here in the order of: server, console, cli, docs, others)
- console: add read replica support section to pro popup (#4118)
- cli: list all avialable commands in root command help (fix #4623)
## `v1.2.0`

View File

@ -48,6 +48,7 @@ func (o *helpOptions) run() {
NewMigrateCmd(o.EC),
NewMetadataCmd(o.EC),
NewConsoleCmd(o.EC),
NewActionsCmd(o.EC),
},
},
{
@ -55,6 +56,9 @@ func (o *helpOptions) run() {
Commands: []*cobra.Command{
NewCompletionCmd(o.EC),
NewVersionCmd(o.EC),
NewPluginsCmd(o.EC),
NewScriptsCmd(o.EC),
NewUpdateCLICmd(o.EC),
},
},
}