Skip to content

Commit

Permalink
deps: cherry-pick node-inspect#43
Browse files Browse the repository at this point in the history
Node 8.x no longer has --debug-brk.

Ref: nodejs/node-inspect#43
PR-URL: #11441
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: joshgav - Josh Gavant <josh.gavant@outlook.com>
Reviewed-By: cjihrig - Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
  • Loading branch information
ofrobots committed Apr 12, 2017
1 parent a912425 commit b7608ac
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions deps/node-inspect/lib/_inspect.js
Expand Up @@ -55,10 +55,11 @@ function getDefaultPort() {


function runScript(script, scriptArgs, inspectPort, childPrint) { function runScript(script, scriptArgs, inspectPort, childPrint) {
return new Promise((resolve) => { return new Promise((resolve) => {
const args = [ const needDebugBrk = process.version.match(/^v(6|7)\./);
'--inspect', const args = (needDebugBrk ?
`--debug-brk=${inspectPort}`, ['--inspect', `--debug-brk=${inspectPort}`] :
].concat([script], scriptArgs); [`--inspect-brk=${inspectPort}`])
.concat([script], scriptArgs);
const child = spawn(process.execPath, args); const child = spawn(process.execPath, args);
child.stdout.setEncoding('utf8'); child.stdout.setEncoding('utf8');
child.stderr.setEncoding('utf8'); child.stderr.setEncoding('utf8');
Expand Down

0 comments on commit b7608ac

Please sign in to comment.