Skip to content

Commit

Permalink
cli/config: Update 'set' command description
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomByte committed Apr 24, 2023
1 parent 22cd468 commit f106971
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/cli/commands/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <key> [value]",
"Set the value for a given configuration key. Provide no unset the configuration", {
handler: handleConfig,
builder: noop,
middlewares: [baseMiddleware],
})
.command("set <key> [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 <key>", "Get the value for a given configuration key", {
handler: handleConfig,
builder: noop,
Expand Down

0 comments on commit f106971

Please sign in to comment.