mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-20 20:09:11 +00:00
ExtensionLoader should follow symlinks
This commit is contained in:
parent
22d72de969
commit
6069ccacdc
@ -311,7 +311,7 @@ class ExtensionLoader(object):
|
||||
self.logger.debug('Loading from paths.')
|
||||
for path in paths:
|
||||
self.logger.debug('Checking path %s', path)
|
||||
for root, _, files in os.walk(path):
|
||||
for root, _, files in os.walk(path, followlinks=True):
|
||||
should_skip = False
|
||||
for igpath in ignore_paths:
|
||||
if root.startswith(igpath):
|
||||
|
Loading…
x
Reference in New Issue
Block a user