fix: skip macOS ._* artifact files in migrations runner
Some checks failed
Deploy to Production / deploy (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 17:08:24 +03:00
parent 6d07632f01
commit 76101e8811

View File

@@ -15,7 +15,7 @@ export async function runMigrations() {
`)
const files = fs.readdirSync(migrationsDir)
.filter(f => f.endsWith('.sql'))
.filter(f => f.endsWith('.sql') && !f.startsWith('._'))
.sort()
for (const file of files) {