Skip to content

Commit

Permalink
Ignore ledger database temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvinn8 committed Dec 27, 2023
1 parent d72c054 commit 1c53a4f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ public Reference20<Tree> trackDirectoryTreePath(String path, MchRepository repos
if (!predicate.test(name)) {
continue;
}
// TODO repository-wide "mchignore"
if (name.contains("ledger.sqlite")) {
continue;
}
if (file.isDirectory()) {
// Track subdirectories
Reference20<Tree> currentSubTreeReference = currentTree != null ? currentTree.getSubTrees().get(name) : null;
Expand Down

0 comments on commit 1c53a4f

Please sign in to comment.