diff --git a/pkg/cmd/grafana-cli/commands/commands.go b/pkg/cmd/grafana-cli/commands/commands.go index 06e8dd16d21..3f8826ce8ba 100644 --- a/pkg/cmd/grafana-cli/commands/commands.go +++ b/pkg/cmd/grafana-cli/commands/commands.go @@ -48,13 +48,10 @@ var pluginCommands = []cli.Command{ Usage: "list all installed plugins", Action: runCommand(lsCommand), }, { - Name: "uninstall", - Usage: "uninstall ", - Action: runCommand(removeCommand), - }, { - Name: "remove", - Usage: "remove ", - Action: runCommand(removeCommand), + Name: "uninstall", + Aliases: []string{"remove"}, + Usage: "uninstall ", + Action: runCommand(removeCommand), }, }