Skip to content

Commit

Permalink
[17.0][FIX] module_analysis: interpret exclude_directories as relativ…
Browse files Browse the repository at this point in the history
…e to module's folder

Fixes OCA#3042.
  • Loading branch information
fcayre committed Oct 3, 2024
1 parent 704fbef commit 5c3856b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module_analysis/models/ir_module_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _get_files_to_analyse(
if not path:
return res
for root, _, files in os.walk(path, followlinks=True):
if set(Path(root).parts) & set(exclude_directories):
if set(Path(root).relative_to(path).parts) & set(exclude_directories):
continue
for name in files:
if name in exclude_files:
Expand Down

0 comments on commit 5c3856b

Please sign in to comment.