feat(cli): add uninstall alias for remove

This commit is contained in:
bergquist 2016-04-11 14:49:12 +02:00
parent 8047f902a5
commit 2fd25f0093

View File

@ -43,6 +43,10 @@ var pluginCommands = []cli.Command{
Name: "ls",
Usage: "list all installed plugins",
Action: runCommand(lsCommand),
}, {
Name: "uninstall",
Usage: "uninstall <plugin name>",
Action: runCommand(removeCommand),
}, {
Name: "remove",
Usage: "remove <plugin name>",