Skip to content

Commit 3166c11

Browse files
fix unintended env var usage (#326)
* fix unintended env var usage * update version
1 parent 3dee6d1 commit 3166c11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async function startCommandLine() {
6060
});
6161

6262
return yargs // eslint-disable-line
63-
.env('')
63+
.env('CF_ARG_') // this means that every process.env.CF_ARG_* will be passed to argv
6464
.option('cfconfig', {
6565
describe: `Custom path for authentication contexts config file (default: ${DEFAULTS.CFCONFIG})`,
6666
global: false,

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.19.1",
3+
"version": "0.19.2",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)