Skip to content

Commit

Permalink
Allow stdin to work while profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
STRd6 authored Aug 30, 2023
1 parent 4abcd1e commit 8612d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/v8.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function v8 (args) {
'-r', path.join(__dirname, '..', 'lib', 'preload', 'soft-exit'),
...(onPort ? ['-r', path.join(__dirname, '..', 'lib', 'preload', 'detect-port.js')] : [])
].concat(args.argv), {
stdio: ['ignore', 'pipe', 'inherit', 'pipe', 'ignore', 'pipe']
stdio: ['inherit', 'pipe', 'inherit', 'pipe', 'ignore', 'pipe']
})

// Isolate log is created before command is executed
Expand Down

0 comments on commit 8612d87

Please sign in to comment.