From ec6a88c459906ceea63393c2765e1637c2cbb42a Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Thu, 4 May 2023 10:12:25 +0200 Subject: [PATCH] [INTERNAL] config: Fix command examples They were missing the 'config' command --- lib/cli/commands/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/commands/config.js b/lib/cli/commands/config.js index bfdc810a..a2b50632 100644 --- a/lib/cli/commands/config.js +++ b/lib/cli/commands/config.js @@ -28,9 +28,9 @@ configCommand.builder = function(cli) { builder: noop, middlewares: [baseMiddleware], }) - .example("$0 set mavenSnapshotEndpointUrl http://example.com/snapshots/", + .example("$0 config set mavenSnapshotEndpointUrl http://example.com/snapshots/", "Set a value for the mavenSnapshotEndpointUrl configuration") - .example("$0 set mavenSnapshotEndpointUrl", + .example("$0 config set mavenSnapshotEndpointUrl", "Unset the current value of the mavenSnapshotEndpointUrl configuration"); };