Commit eeb7524c by bergquist

feat(cli): improve helptext for cli

parent 2fd25f00
......@@ -25,7 +25,7 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
var pluginCommands = []cli.Command{
{
Name: "install",
Usage: "install <plugin name>",
Usage: "install <plugin id>",
Action: runCommand(installCommand),
}, {
Name: "list-remote",
......@@ -33,7 +33,7 @@ var pluginCommands = []cli.Command{
Action: runCommand(listremoteCommand),
}, {
Name: "upgrade",
Usage: "upgrade <plugin name>",
Usage: "upgrade <plugin id>",
Action: runCommand(upgradeCommand),
}, {
Name: "upgrade-all",
......@@ -45,11 +45,11 @@ var pluginCommands = []cli.Command{
Action: runCommand(lsCommand),
}, {
Name: "uninstall",
Usage: "uninstall <plugin name>",
Usage: "uninstall <plugin id>",
Action: runCommand(removeCommand),
}, {
Name: "remove",
Usage: "remove <plugin name>",
Usage: "remove <plugin id>",
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