We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d331539 commit 41c1553Copy full SHA for 41c1553
tools/resources/__init__.py
@@ -312,6 +312,10 @@ def filter_by_libraries(self, libraries_included):
312
if ref.name.endswith(MBED_LIB_FILENAME)
313
)
314
self._excluded_libs = all_library_refs - self._libs_filtered
315
+ if self._collect_ignores:
316
+ self.ignored_dirs += [
317
+ dirname(n) or "." for n, _ in self._excluded_libs
318
+ ]
319
320
def _get_from_refs(self, file_type, key):
321
return sorted([key(f) for f in self.get_file_refs(file_type)])
0 commit comments