mirror of
https://github.com/ansible/awx.git
synced 2026-02-05 03:24:50 -03:30
Revert "follow symlinks while discovering valid playbooks"
This reverts commit 3dd21d720e.
This commit is contained in:
@@ -199,7 +199,7 @@ class ProjectOptions(models.Model):
|
||||
results = []
|
||||
project_path = self.get_project_path()
|
||||
if project_path:
|
||||
for dirpath, dirnames, filenames in os.walk(smart_str(project_path), followlinks=True):
|
||||
for dirpath, dirnames, filenames in os.walk(smart_str(project_path)):
|
||||
if skip_directory(dirpath):
|
||||
continue
|
||||
for filename in filenames:
|
||||
|
||||
Reference in New Issue
Block a user