Skip to content

Commit

Permalink
chore: Remove "Extracting..." log message
Browse files Browse the repository at this point in the history
  • Loading branch information
mjzffr committed Jun 2, 2020
1 parent c2d32b1 commit 48702d6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/BrowserFetcher.ts
Expand Up @@ -415,9 +415,6 @@ function extractTar(tarPath: string, folderPath: string): Promise<unknown> {
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);
});
}
Expand Down

0 comments on commit 48702d6

Please sign in to comment.