From c394a571ff0b085fd3782bf80aadfa7caaef90eb Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Thu, 19 Jan 2023 20:51:23 +0000 Subject: [PATCH] launcher: remove unneeded pipes --- src/launcher/start.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/launcher/start.js b/src/launcher/start.js index aa26276..c98a0ad 100644 --- a/src/launcher/start.js +++ b/src/launcher/start.js @@ -18,9 +18,6 @@ export default async (browserPath, args, transport, extra) => { stdio: ['ignore', 'pipe', 'pipe', 'pipe', 'pipe'] }); - proc.stdout.pipe(proc.stdout); - proc.stderr.pipe(proc.stderr); - log(`connecting to CDP over ${transport === 'stdio' ? 'stdio pipe' : `websocket (${port})`}...`); let CDP;