diff --git a/src/cdn/downloadWrapper.ts b/src/cdn/downloadWrapper.ts index 0e5ae5a..b1854b8 100644 --- a/src/cdn/downloadWrapper.ts +++ b/src/cdn/downloadWrapper.ts @@ -21,8 +21,8 @@ export default async function downloadWrapper({ host, path, size }: {host: strin } //Download via curl - //Try up to three times - for (let i = 0; i < 3; i += 1) { + //Try up to ten times + for (let i = 0; i < 10; i += 1) { try { const downloadResult = await downloadWithCurl({ host, path, tempFileName }); return downloadResult;