Skip to content

Commit f05ea52

Browse files
authored
Merge pull request #168 from Methy42/master
Create a new object as the env for the ping process, without overwrit…
2 parents 842a042 + b80a098 commit f05ea52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/builder/linux.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ builder.getCommandArguments = function (target, config) {
118118
builder.getSpawnOptions = function () {
119119
return {
120120
shell: false,
121-
env: Object.assign(process.env, {LANG: 'C'}),
121+
env: Object.assign({}, process.env, { LANG: 'C' }),
122122
};
123123
};
124124

0 commit comments

Comments
 (0)