Skip to content

Commit 02c14b5

Browse files
committed
fix(core): ensure databases are ignored in semantic git audit
1 parent ef1e98a commit 02c14b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ledgermind/core/stores/audit_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def initialize(self):
5757
gitignore_path = os.path.join(self.repo_path, ".gitignore")
5858
if not os.path.exists(gitignore_path):
5959
with open(gitignore_path, "w", encoding="utf-8") as f:
60-
f.write("\n.lock\n.quarantine/\n.tx_backup/\n")
60+
f.write("\n.lock\n.quarantine/\n.tx_backup/\n*.db\n*.db-wal\n*.db-shm\n")
6161

6262
self.run(["add", ".gitignore"])
6363
self.run(["commit", "--quiet", "--allow-empty", "-m", "Initial commit"])

0 commit comments

Comments
 (0)