chore: fix installation tests (#26691)

This commit is contained in:
Pavel Feldman 2023-08-24 12:48:39 -07:00 committed by GitHub
parent c90c943154
commit 6d4f937674
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,6 +96,7 @@ function downloadFile(options: DownloadParams): Promise<void> {
async function main(options: DownloadParams) {
await downloadFile(options);
log(`SUCCESS downloading ${options.title}`);
log(`extracting archive`);
await extract(options.zipPath, { dir: options.browserDirectory });
if (options.executablePath) {