From f1069711139d1efe9ab470b7ec6aadcf90141a05 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Mon, 24 Apr 2023 15:01:19 +0200 Subject: [PATCH] cli/config: Update 'set' command description --- lib/cli/commands/config.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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,