Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #57 from vector-im/dbkr/fix_signing
Browse files Browse the repository at this point in the history
Fix signing
  • Loading branch information
dbkr authored Aug 16, 2021
2 parents ec967be + f0b77bc commit d4c488a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/docker_runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class DockerRunner implements IRunner {
env?: NodeJS.ProcessEnv,
) {
if (env) {
this.env = Object.assign(process.env, env);
this.env = Object.assign({}, process.env, env);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class Runner implements IRunner {
env?: NodeJS.ProcessEnv,
) {
if (env) {
this.env = Object.assign(process.env, env);
this.env = Object.assign({}, process.env, env);
}
}

Expand Down

0 comments on commit d4c488a

Please sign in to comment.