1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

ExtensionLoader should follow symlinks

This commit is contained in:
Bobby Batacharia 2015-06-28 11:00:01 +01:00
parent 22d72de969
commit 6069ccacdc

View File

@ -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):