fix logic for suprpessing snapshots in big directories
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-07-15 09:07:04 -04:00
parent c6e01adde4
commit 44e2b7f4b6
+1 -1
View File
@@ -19,7 +19,7 @@ export namespace Snapshot {
limit: 1000,
})
log.info("found files", { count: files.length })
if (files.length > 1000) return
if (files.length >= 1000) return
}
const git = gitdir(sessionID)