Skip to content

Commit

Permalink
feat: add tree.txt ignoring while validating
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Feb 5, 2024
1 parent 54beb01 commit a2cd07d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Backupper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1640,6 +1640,10 @@ def validate(
progress_counter = 0
size_total_ = len(checksums_output)
for filepath_rel, root_and_checksum in checksums_output.items():
# Ignore tree.txt
if filepath_rel == "tree.txt":
continue

# Extract checksum
checksum = root_and_checksum["checksum"]

Expand Down

0 comments on commit a2cd07d

Please sign in to comment.