diff --git a/src/download.ts b/src/download.ts index 06af78d..0d9ae34 100644 --- a/src/download.ts +++ b/src/download.ts @@ -86,7 +86,7 @@ export default async function downloadBlobFromPointer( const blob = await bodyToBuffer(lfsObjectBody); - // Write LFS cache for this object, if cache path is still accessible and unoccupied. + // Write LFS cache for this object, if cache path is accessible. if (await isWriteable(objectPath)) { await fsp.mkdir(path.dirname(objectPath), { recursive: true }); await fsp.writeFile(objectPath, blob);