Document --quiet option for plugin install

This commit is contained in:
Juan Cruz Viotti 2015-03-02 10:41:38 -04:00
parent 572fe29fe6
commit 78d11bffd0
2 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,7 @@
exports.install = {
signature: 'plugin install <name>',
description: 'install a plugin',
help: 'Use this command to install a resin plugin\n\nExamples:\n $ resin plugin install hello',
help: 'Use this command to install a resin plugin\n\nUse `--quiet` to prevent information logging.\n\nExamples:\n $ resin plugin install hello',
permission: 'user',
action: function(params, options, done) {
return plugins.install(params.name, function(error) {

View File

@ -36,6 +36,8 @@ exports.install =
help: '''
Use this command to install a resin plugin
Use `--quiet` to prevent information logging.
Examples:
$ resin plugin install hello
'''