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.
1 parent 09a21f8 commit 7bcb584Copy full SHA for 7bcb584
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