launcher: remove unneeded pipes

This commit is contained in:
CanadaHonk 2023-01-19 20:51:23 +00:00
parent 4bb5ff2932
commit c394a571ff

View File

@ -18,9 +18,6 @@ export default async (browserPath, args, transport, extra) => {
stdio: ['ignore', 'pipe', 'pipe', 'pipe', 'pipe'] 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})`}...`); log(`connecting to CDP over ${transport === 'stdio' ? 'stdio pipe' : `websocket (${port})`}...`);
let CDP; let CDP;