You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test/processExecSync.js adds a function that will emulate the child_process.execSync for legacy node <= 0.10.x
the function runs the given command, saves the [stdout, stderr] and the command status in a temp directory then reads the files to get the output of the said commands.
the function deletes the temp files and folders after the task is complete.
The text was updated successfully, but these errors were encountered:
Issue created for reference only
Node.js v0.10 doesn't have a
child_process.execFileSync
method: https://nodejs.org/docs/latest-v0.10.x/api/child_process.htmlsee discussions on #1492
fixed by #1492
node - v0.10.x
npm - v2.51.x
Details regarding the fix
test/processExecSync.js
adds a function that will emulate the child_process.execSync for legacy node <= 0.10.xthe function runs the given command, saves the
[stdout, stderr]
and the command status in a temp directory then reads the files to get the output of the said commands.the function deletes the temp files and folders after the task is complete.
The text was updated successfully, but these errors were encountered: