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 8deed5b commit a7460c1Copy full SHA for a7460c1
src/exec_auth.ts
@@ -95,7 +95,7 @@ export class ExecAuth implements Authenticator {
95
}
96
let opts = {};
97
if (exec.env) {
98
- const env = process.env;
+ const env = { ...process.env };
99
exec.env.forEach((elt) => (env[elt.name] = elt.value));
100
opts = { ...opts, env };
101
0 commit comments