Commit 2fd25f00 by bergquist

feat(cli): add uninstall alias for remove

parent 8047f902
...@@ -44,6 +44,10 @@ var pluginCommands = []cli.Command{ ...@@ -44,6 +44,10 @@ var pluginCommands = []cli.Command{
Usage: "list all installed plugins", Usage: "list all installed plugins",
Action: runCommand(lsCommand), Action: runCommand(lsCommand),
}, { }, {
Name: "uninstall",
Usage: "uninstall <plugin name>",
Action: runCommand(removeCommand),
}, {
Name: "remove", Name: "remove",
Usage: "remove <plugin name>", Usage: "remove <plugin name>",
Action: runCommand(removeCommand), Action: runCommand(removeCommand),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment