[16.0][FIX] module_analysis: interpret exclude_directories as relative to module's folder

Backport of PR #3045.
pull/3083/head
Florent Cayré 2024-10-03 10:33:26 +02:00
parent a787ad2345
commit 6122411c80
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class IrModuleModule(models.Model):
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: