From a6c472994d5f153e4995dd39ca67e1e366171736 Mon Sep 17 00:00:00 2001 From: alikia2x Date: Wed, 7 Jan 2026 16:13:05 +0800 Subject: [PATCH] fix: incorrect path in dump script --- src/{backup.ts => dump.ts} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/{backup.ts => dump.ts} (97%) diff --git a/src/backup.ts b/src/dump.ts similarity index 97% rename from src/backup.ts rename to src/dump.ts index 03c7f56..04d1fcf 100644 --- a/src/backup.ts +++ b/src/dump.ts @@ -45,7 +45,7 @@ async function runBackup() { const dayStr = getDayStr(); const monthStr = getMonthStr(); const fileName = `cvsa_${dayStr}.dump`; - const filePath = `${CONFIG.localBackupDir}/${fileName}.dump`; + const filePath = `${CONFIG.localBackupDir}/${fileName}`; const localDumpfile = Bun.file(filePath); logger.log(`Starting backup...`);