Skip to content

Commit eeb7524

Browse files
committed
feat(cli): improve helptext for cli
1 parent 2fd25f0 commit eeb7524

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/cmd/grafana-cli/commands/commands.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
2525
var pluginCommands = []cli.Command{
2626
{
2727
Name: "install",
28-
Usage: "install <plugin name>",
28+
Usage: "install <plugin id>",
2929
Action: runCommand(installCommand),
3030
}, {
3131
Name: "list-remote",
3232
Usage: "list remote available plugins",
3333
Action: runCommand(listremoteCommand),
3434
}, {
3535
Name: "upgrade",
36-
Usage: "upgrade <plugin name>",
36+
Usage: "upgrade <plugin id>",
3737
Action: runCommand(upgradeCommand),
3838
}, {
3939
Name: "upgrade-all",
@@ -45,11 +45,11 @@ var pluginCommands = []cli.Command{
4545
Action: runCommand(lsCommand),
4646
}, {
4747
Name: "uninstall",
48-
Usage: "uninstall <plugin name>",
48+
Usage: "uninstall <plugin id>",
4949
Action: runCommand(removeCommand),
5050
}, {
5151
Name: "remove",
52-
Usage: "remove <plugin name>",
52+
Usage: "remove <plugin id>",
5353
Action: runCommand(removeCommand),
5454
},
5555
}

0 commit comments

Comments
 (0)