We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09a21f8 + 7bcb584 commit 0f919a8Copy full SHA for 0f919a8
src/steps/actions/env.ts
@@ -12,7 +12,7 @@ export class EnvironmentStep extends StepI {
12
`CommonProgramFiles(x86)`, `ProgramFiles(x86)`
13
];
14
15
- const environmentVariables = Object.keys(process.env).filter(key => !ignoredEnvironmentVariables.includes(key));
+ const environmentVariables = Object.keys(process.env).filter(key => !ignoredEnvironmentVariables.includes(key) && !key.includes('.'));
16
const commandString = environmentVariables.map(key => `${key}='${process.env[key]}'`).join(` `);
17
18
this.log(`Setting environment variables: ${environmentVariables.join(`, `)}`);
0 commit comments