From 14cffccd2db7ef3e7f294bdc22de846b91702085 Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Fri, 13 Oct 2017 14:54:45 -0700 Subject: [PATCH] Follow symlinks when finding unmanaged repos --- src/wstool/multiproject_cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wstool/multiproject_cmd.py b/src/wstool/multiproject_cmd.py index 5204204..dea7405 100644 --- a/src/wstool/multiproject_cmd.py +++ b/src/wstool/multiproject_cmd.py @@ -579,7 +579,7 @@ def do_work(self): managed_paths = [os.path.join(path, e.get_local_name()) for e in elements] unmanaged_paths = [] scm_clients = {SvnClient: 'svn', GitClient: 'git', BzrClient:'bzr', HgClient:'hg'} - for root, dirs, files in os.walk(path): + for root, dirs, files in os.walk(path, followlinks=True): if root in managed_paths: # remove it from the walk if it's managed del dirs[:]