Skip to content

Commit

Permalink
Don't track older files in directory.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Apr 27, 2024
1 parent 927da7c commit a648dc6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions indexer/src/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def add_files_to_version(
# skip .DS_store files
if cur.startswith("."):
continue
if version.version not in cur:
continue
parsed_file = file_parser()
try:
parsed_file.parse(cur)
Expand Down

0 comments on commit a648dc6

Please sign in to comment.