[16.0][FIX] module_analysis: interpret exclude_directories as relative to module's folder
Backport of PR #3045.pull/3083/head
parent
a787ad2345
commit
6122411c80
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue