fix: disable progress

This commit is contained in:
Vitaly Gashkov
2025-08-23 21:19:21 +05:00
parent 130a556bbf
commit fc0a7e74bf
-1
View File
@@ -11,7 +11,6 @@ const downloadLatestApk = async () => {
const filepath = join(process.cwd(), 'crunchyroll.xapk');
await download(url, {
output: filepath,
onProgress: (progress) => console.log(progress),
onError: (error) => console.error(error),
});
return filepath;