fix(populateCache): let download() cache LFS (fixed)
This commit is contained in:
parent
402b9fc46c
commit
6d43595383
1 changed files with 1 additions and 3 deletions
|
@ -59,10 +59,8 @@ export default async function populateCache(workDir: string, ref: string = 'HEAD
|
||||||
if (await isVacantAndWriteable(pointer.objectPath) === false)
|
if (await isVacantAndWriteable(pointer.objectPath) === false)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const content = await downloadBlobFromPointer(
|
|
||||||
{ http, url: remoteURL },
|
|
||||||
pointer);
|
|
||||||
|
|
||||||
|
await downloadBlobFromPointer({ http, url: remoteURL }, pointer);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue