mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Ensured that role version can be specified in role dependencies
This commit is contained in:
parent
c2fe33f9f4
commit
1803976a40
2 changed files with 4 additions and 1 deletions
|
@ -182,6 +182,9 @@ class Play(object):
|
|||
# dependency name pointing to SCM URL
|
||||
# assume role name is last part of the URL
|
||||
orig_path = utils.repo_url_to_role_name(orig_path)
|
||||
if ',' in orig_path:
|
||||
# version information for role dependency used by galaxy
|
||||
orig_path = orig_path.split(',')[0]
|
||||
|
||||
role_vars = {}
|
||||
if type(orig_path) == dict:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue