From 2d6eed4c831a8ef5f745996ade581e8bc9386bd6 Mon Sep 17 00:00:00 2001 From: Anton Strogonoff Date: Thu, 2 Dec 2021 14:14:48 +0100 Subject: [PATCH] chore: correct factual error in comment --- src/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);