fix: skip browser download (#9160)

Fixed: https://github.com/puppeteer/puppeteer/issues/9158
This commit is contained in:
jrandolf
2022-10-25 11:02:40 +02:00
committed by GitHub
parent 088c18c842
commit 2245d7d6ed

View File

@@ -39,6 +39,7 @@ export async function downloadBrowser(): Promise<void> {
const configuration = getConfiguration();
if (configuration.skipDownload) {
logPolitely('**INFO** Skipping browser download as instructed.');
return;
}
const product = configuration.defaultProduct!;