Skip to content

Commit 5e2a625

Browse files
chore: generate
1 parent 065dc27 commit 5e2a625

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

packages/core/src/repository-cache.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,11 @@ const layer: Layer.Layer<Service, never, FSUtil.Service | Git.Service | EffectFl
167167
yield* cacheOperation(fs.remove(localPath, { recursive: true }), "remove stale cache", localPath)
168168
}
169169

170-
const status = !reuse ? ("cloned" as const) : input.refresh ? ("refreshed" as const) : ("cached" as const)
170+
const status = !reuse
171+
? ("cloned" as const)
172+
: input.refresh
173+
? ("refreshed" as const)
174+
: ("cached" as const)
171175

172176
if (status === "cloned") {
173177
yield* git.repo

0 commit comments

Comments
 (0)