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
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
The gist of this issue is that on Windows, child_process.spawn handles the command incorrectly when both it and one of its arguments contains a space. So, this works fine:
varspawn=require('child_process').spawn;spawn('nospaces.cmd',['arg with spaces']);spawn('command with spaces.cmd',['nospaces']);
But this yields 'command' is not recognized as an internal or external command, operable program or batch file.:
spawn('command with spaces.cmd',['arg with spaces']);