Skip to content

Commit

Permalink
[INTERNAL] config: Fix command examples
Browse files Browse the repository at this point in the history
They were missing the 'config' command
  • Loading branch information
RandomByte committed May 4, 2023
1 parent 0d8e7f6 commit ec6a88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/commands/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
};

Expand Down

0 comments on commit ec6a88c

Please sign in to comment.