This commit is contained in:
2025-08-07 19:32:41 +01:00
parent f3491f32c0
commit aa21c1d866
7 changed files with 45 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ export async function processPromisesBatch(
asyncCallback,
) {
const results = [];
const fileHandle = await open('cache/progress.txt',"w+");
const fileHandle = await open('../cache-repos/progress.txt',"w+");
for (let start = 0; start < items.length; start += limit) {
const end = start + limit > items.length ? items.length : start + limit;