diff --git a/src/BrowserFetcher.ts b/src/BrowserFetcher.ts index b46fec8890bb5..dc136b882f933 100644 --- a/src/BrowserFetcher.ts +++ b/src/BrowserFetcher.ts @@ -415,9 +415,6 @@ function extractTar(tarPath: string, folderPath: string): Promise { tarStream.on('error', reject); tarStream.on('finish', fulfill); const readStream = fs.createReadStream(tarPath); - readStream.on('data', () => { - process.stdout.write('\rExtracting...'); - }); readStream.pipe(bzip()).pipe(tarStream); }); }