fix(populateCache): let download() cache LFS (fixed)

This commit is contained in:
Anton Strogonoff 2021-11-29 03:04:57 +01:00
parent 402b9fc46c
commit 6d43595383

View file

@ -59,10 +59,8 @@ export default async function populateCache(workDir: string, ref: string = 'HEAD
if (await isVacantAndWriteable(pointer.objectPath) === false)
return;
const content = await downloadBlobFromPointer(
{ http, url: remoteURL },
pointer);
await downloadBlobFromPointer({ http, url: remoteURL }, pointer);
}
}