1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Pass path to GalaxyRole object (#43051)

This will list all roles in all paths in roles_path rather than just the first path in roles_path.
This commit is contained in:
Sam Doran 2018-08-23 12:44:48 -04:00 committed by GitHub
parent 88509e75ad
commit 05fff27415
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ansible-galaxy - properly list all roles in roles_path (https://github.com/ansible/ansible/issues/43010)

View file

@ -493,7 +493,7 @@ class GalaxyCLI(CLI):
path_files = os.listdir(role_path)
path_found = True
for path_file in path_files:
gr = GalaxyRole(self.galaxy, path_file)
gr = GalaxyRole(self.galaxy, path_file, path=path)
if gr.metadata:
install_info = gr.install_info
version = None