Skip to content

Commit aca6c5b

Browse files
authored
Apply suggestions from code review
1 parent 36da045 commit aca6c5b

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
@@ -404,8 +404,8 @@ class CML {
404404
async startRunner(opts = {}) {
405405
const env = {};
406406
const sensitive =
407-
['CML_RUNNER_SENSITIVE_ENV'] +
408-
process.env.CML_RUNNER_SENSITIVE_ENV.split(':');
407+
['_CML_RUNNER_SENSITIVE_ENV'] +
408+
process.env._CML_RUNNER_SENSITIVE_ENV.split(':');
409409
for (const variable in process.env)
410410
if (!sensitive.includes(variable)) env[variable] = process.env[variable];
411411
return await this.getDriver().startRunner({ ...opts, env });

0 commit comments

Comments
 (0)