Skip to content

Commit

Permalink
fix(core): always inherit output from plugins (#26797)
Browse files Browse the repository at this point in the history
(cherry picked from commit 28939dd)
  • Loading branch information
FrozenPandaz committed Jul 5, 2024
1 parent 314c2fd commit e4ae1e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ async function startPluginWorker() {
ipcPath,
],
{
stdio: process.stdout.isTTY ? 'inherit' : 'ignore',
stdio: 'inherit',
env,
detached: true,
shell: false,
Expand Down

0 comments on commit e4ae1e7

Please sign in to comment.