Skip to content

Commit df92b3c

Browse files
committed
child_process: remove lookup of undefined property
execSync() passes opts.args to checkExecSyncError(). There are two problems: 1. opts.args appears to always be undefined. 2. Even if it was defined, checkExecSyncError() would not use it since the command input is guaranteed to be defined. This commit updates the code to pass undefined instead. PR-URL: #44766 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 5118c31 commit df92b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ function execSync(command, options) {
940940
if (inheritStderr && ret.stderr)
941941
process.stderr.write(ret.stderr);
942942

943-
const err = checkExecSyncError(ret, opts.args, command);
943+
const err = checkExecSyncError(ret, undefined, command);
944944

945945
if (err)
946946
throw err;

0 commit comments

Comments
 (0)