chore: increase rm retries for browsers (#9910)

This commit is contained in:
Alex Rudenko 2023-03-24 10:45:28 +01:00 committed by GitHub
parent de86cafe3c
commit c09b1b6948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,8 @@ export class Cache {
fs.rmSync(this.#rootDir, {
force: true,
recursive: true,
maxRetries: 5,
maxRetries: 10,
retryDelay: 200,
});
}
}