Skip to content

Commit a42d28d

Browse files
fix cli docs (#303)
1 parent eace45f commit a42d28d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/interface/cli/commad-line-interface.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function startCommandLine() {
6262

6363
return yargs // eslint-disable-line
6464
.env('')
65-
.options('cfconfig', {
65+
.option('cfconfig', {
6666
describe: `Custom path for authentication contexts config file (default: ${DEFAULTS.CFCONFIG})`,
6767
global: false,
6868
})

lib/interface/cli/commands/root/auth.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const auth = new Command({
2020
},
2121
builder: (yargs) => {
2222
return yargs
23-
.options('cfconfig', {
23+
.option('cfconfig', {
2424
describe: `Custom path for authentication contexts config file (default: '${DEFAULTS.CFCONFIG}')`,
2525
global: true,
2626
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.17.1",
3+
"version": "0.17.2",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)