We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Platform: win7-x64 Node: C:\Program Files\nodejs\node.exe
If I use forever I get an exception:
events.js:72 throw er; // Unhandled 'error' event ^ Error: spawn ENOENT at errnoException (child_process.js:975:11) at Process._handle.onexit (child_process.js:766:34)
Reason: the variable command is "C:\Program" in monitor.js (line 225):
cmdarr = this.command.trim().split(/\s+/); command = this.command; args = this.args;
if (cmdarr.length > 1) { command = cmdarr[0]; args = cmdarr.slice(1).concat(this.args); }
if (this.fork) { if (!this.stdio) { this.spawnWith.stdio = [ 'pipe', 'pipe', 'pipe', 'ipc' ]; } return spawn(command, args, this.spawnWith); }
return spawn(command, args, this.spawnWith);
The text was updated successfully, but these errors were encountered:
Yup, pretty sure this is the same issue I'm having. I'm investigating workarounds now.
Sorry, something went wrong.
+1
anyone had any luck with this?
Duplicate of #35. It is an open issue that needs to be resolved.
No branches or pull requests
Platform: win7-x64
Node: C:\Program Files\nodejs\node.exe
If I use forever I get an exception:
events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn ENOENT
at errnoException (child_process.js:975:11)
at Process._handle.onexit (child_process.js:766:34)
Reason: the variable command is "C:\Program" in monitor.js (line 225):
cmdarr = this.command.trim().split(/\s+/);
command = this.command;
args = this.args;
if (cmdarr.length > 1) {
command = cmdarr[0];
args = cmdarr.slice(1).concat(this.args);
}
if (this.fork) {
if (!this.stdio) {
this.spawnWith.stdio = [ 'pipe', 'pipe', 'pipe', 'ipc' ];
}
return spawn(command, args, this.spawnWith);
}
return spawn(command, args, this.spawnWith);
The text was updated successfully, but these errors were encountered: