Skip to content

Commit 30acbb8

Browse files
committed
Apply suggestions from code review
1 parent 251ce86 commit 30acbb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cml.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ class CML {
410410
async startRunner(opts = {}) {
411411
const env = {};
412412
const sensitive =
413-
['CML_RUNNER_SENSITIVE_ENV'] +
414-
process.env.CML_RUNNER_SENSITIVE_ENV.split(':');
413+
['_CML_RUNNER_SENSITIVE_ENV'] +
414+
process.env._CML_RUNNER_SENSITIVE_ENV.split(':');
415415
for (const variable in process.env)
416416
if (!sensitive.includes(variable)) env[variable] = process.env[variable];
417417
return await this.getDriver().startRunner({ ...opts, env });

0 commit comments

Comments
 (0)