From 2fd25f0093475bfdd3fe5c0237af03cc48325421 Mon Sep 17 00:00:00 2001 From: bergquist Date: Mon, 11 Apr 2016 14:49:12 +0200 Subject: [PATCH] feat(cli): add uninstall alias for remove --- pkg/cmd/grafana-cli/commands/commands.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/cmd/grafana-cli/commands/commands.go b/pkg/cmd/grafana-cli/commands/commands.go index 55a0e2660ec..34169b353e7 100644 --- a/pkg/cmd/grafana-cli/commands/commands.go +++ b/pkg/cmd/grafana-cli/commands/commands.go @@ -43,6 +43,10 @@ var pluginCommands = []cli.Command{ Name: "ls", Usage: "list all installed plugins", Action: runCommand(lsCommand), + }, { + Name: "uninstall", + Usage: "uninstall ", + Action: runCommand(removeCommand), }, { Name: "remove", Usage: "remove ",