Skip to content

Commit d52b6b9

Browse files
authored
chore: remove unused argument (#156)
1 parent 5d84384 commit d52b6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/enoent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function hookChildProcess(cp, parsed) {
2424
// the command exists and emit an "error" instead
2525
// See https://github.com/IndigoUnited/node-cross-spawn/issues/16
2626
if (name === 'exit') {
27-
const err = verifyENOENT(arg1, parsed, 'spawn');
27+
const err = verifyENOENT(arg1, parsed);
2828

2929
if (err) {
3030
return originalEmit.call(cp, 'error', err);

0 commit comments

Comments
 (0)