Skip to content
This repository was archived by the owner on Aug 11, 2022. It is now read-only.

Commit 26d36e9

Browse files
sonicdoeothiym23
authored andcommitted
spawn: map exit code 127 to ENOENT for node@0.8
Node.js v0.8 will not emit a separate `error` event if the command could not be found. Exit code 127 is reserved for “command not found”, see http://tldp.org/LDP/abs/html/exitcodes.html.
1 parent 269a623 commit 26d36e9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

lib/utils/spawn.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,18 @@ function spawn (cmd, args, options) {
1111
er.file = cmd
1212
cooked.emit("error", er)
1313
}).on("close", function (code, signal) {
14-
cooked.emit("close", code, signal)
14+
// Create ENOENT error because Node.js v0.8 will not emit
15+
// an `error` event if the command could not be found.
16+
if (code === 127) {
17+
var er = new Error('spawn ENOENT')
18+
er.code = 'ENOENT'
19+
er.errno = 'ENOENT'
20+
er.syscall = 'spawn'
21+
er.file = cmd
22+
cooked.emit('error', er)
23+
} else {
24+
cooked.emit("close", code, signal)
25+
}
1526
})
1627

1728
cooked.stdin = raw.stdin

0 commit comments

Comments
 (0)