diff --git a/lib/cli/commands/config.js b/lib/cli/commands/config.js index d1846960..3a507ddf 100644 --- a/lib/cli/commands/config.js +++ b/lib/cli/commands/config.js @@ -12,12 +12,12 @@ const configCommand = { configCommand.builder = function(cli) { return cli .demandCommand(1, "Command required. Available commands are 'set', 'get' and 'list'") - .command("set [value]", - "Set the value for a given configuration key. Provide no unset the configuration", { - handler: handleConfig, - builder: noop, - middlewares: [baseMiddleware], - }) + .command("set [value]", "Set the value for a given configuration key. " + + "Or clear an existing configuration by omitting the value", { + handler: handleConfig, + builder: noop, + middlewares: [baseMiddleware], + }) .command("get ", "Get the value for a given configuration key", { handler: handleConfig, builder: noop,