We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fd25f0 commit eeb7524Copy full SHA for eeb7524
pkg/cmd/grafana-cli/commands/commands.go
@@ -25,15 +25,15 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
25
var pluginCommands = []cli.Command{
26
{
27
Name: "install",
28
- Usage: "install <plugin name>",
+ Usage: "install <plugin id>",
29
Action: runCommand(installCommand),
30
}, {
31
Name: "list-remote",
32
Usage: "list remote available plugins",
33
Action: runCommand(listremoteCommand),
34
35
Name: "upgrade",
36
- Usage: "upgrade <plugin name>",
+ Usage: "upgrade <plugin id>",
37
Action: runCommand(upgradeCommand),
38
39
Name: "upgrade-all",
@@ -45,11 +45,11 @@ var pluginCommands = []cli.Command{
45
Action: runCommand(lsCommand),
46
47
Name: "uninstall",
48
- Usage: "uninstall <plugin name>",
+ Usage: "uninstall <plugin id>",
49
Action: runCommand(removeCommand),
50
51
Name: "remove",
52
- Usage: "remove <plugin name>",
+ Usage: "remove <plugin id>",
53
54
},
55
}
0 commit comments