Skip to content

Commit

Permalink
Merge branch 'master' into title-screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed Jul 12, 2023
2 parents a10a36f + c2ee5fd commit f3808ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/unticked_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_unticked_files(root:Path):
with open(root / includer, 'r') as f:
lines = [line for line in f.readlines() if line.startswith('#include')]
included = [line.replace('#include ', '').rstrip('\r\n').strip('"') for line in lines]
nested_dmes = [file for file in included if ".dme" in file]
nested_dmes = ["/".join(list(includer.split('/')[0:-1])) + file for file in included if ".dme" in file]
print(f'Found {len(included)} includes and {len(nested_dmes)} nested .dme\'s in {root / includer}')
ticked_files.update([root / Path(includer).parent / Path(PureWindowsPath(i)) for i in included])
if nested_dmes: print(f"Additional include files: {nested_dmes}")
Expand Down

0 comments on commit f3808ce

Please sign in to comment.