From 4bd535976fec6a84b5f2d0b5585d4f461cf6ec0b Mon Sep 17 00:00:00 2001 From: Michael Wyraz Date: Tue, 10 Mar 2026 08:09:17 +0100 Subject: [PATCH] Fix indentation --- src/git-cache-helper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git-cache-helper.ts b/src/git-cache-helper.ts index 9162e42..969b689 100644 --- a/src/git-cache-helper.ts +++ b/src/git-cache-helper.ts @@ -68,8 +68,8 @@ export class GitCacheHelper { await git.execGit(args) if (fs.existsSync(cachePath)) { - // In rare cases where it somehow exists but objects/ didn't, clean it up - await fs.promises.rm(cachePath, { recursive: true, force: true }) + // In rare cases where it somehow exists but objects/ didn't, clean it up + await fs.promises.rm(cachePath, { recursive: true, force: true }) } await fs.promises.rename(tmpPath, cachePath) } catch (cloneErr) {