Skip to content

Commit bd37e5a

Browse files
committed
Merge pull request #65 from geky/make-follow-symlinks
Add support for following symlinks in make.py
2 parents 6b3d841 + 1fdb86e commit bd37e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def scan_resources(self, path, exclude_paths=None):
356356
bottom-up mode the directories in dirnames are generated before dirpath
357357
itself is generated.
358358
"""
359-
for root, dirs, files in walk(path):
359+
for root, dirs, files in walk(path, followlinks=True):
360360
# Remove ignored directories
361361
for d in copy(dirs):
362362
dir_path = join(root, d)

0 commit comments

Comments
 (0)