mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-22 12:58:36 +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.')
|
self.logger.debug('Loading from paths.')
|
||||||
for path in paths:
|
for path in paths:
|
||||||
self.logger.debug('Checking path %s', path)
|
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
|
should_skip = False
|
||||||
for igpath in ignore_paths:
|
for igpath in ignore_paths:
|
||||||
if root.startswith(igpath):
|
if root.startswith(igpath):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user