-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
child_process: clone spawn options argument #579
Conversation
spawnSync() modifies the options argument. This commit makes a copy of options before any modifications occur.
LGTM if it passes CI. https://jenkins-iojs.nodesource.com/job/iojs+any-pr+multi/104/ |
Unfortunately the CI seems to be broken atm. Summoning @rvagg - I tried to build the branch "try" but it doesn't work. |
@piscisaureus I think your forgot to set user to 'cjihrig' (edit: and branch to '576'.) |
@bnoordhuis Nope, tried it again, doesn't work. Can you try? |
@piscisaureus https://jenkins-iojs.nodesource.com/view/iojs/job/iojs+any-pr+multi/105/ looks like it's building the right commit. |
You said nothing too much. |
@piscisaureus - The Ubuntu failure is |
@cjihrig please land |
spawnSync() modifies the options argument. This commit makes a copy of options before any modifications occur. Fixes: #576 PR-URL: #579 Reviewed-By: Bert Belder <[email protected]>
Landed in 7854811 |
can we make it not touch the |
You're welcome to try. |
spawnSync()
modifies theoptions
argument. This commit makes a copy ofoptions
before any modifications occur. Fixes #576