mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Merge branch 'galaxy_github_archive' of git://github.com/willthames/ansible into devel
Conflicts: lib/ansible/utils/__init__.py
This commit is contained in:
commit
d87830e1cc
2 changed files with 15 additions and 6 deletions
|
@ -385,12 +385,11 @@ def role_spec_parse(role_spec):
|
|||
if role_spec == "" or role_spec.startswith("#"):
|
||||
return (None, None, None, None)
|
||||
|
||||
# FIXME: coding guidelines want this as a list comprehension
|
||||
tokens = map(lambda s: s.strip(), role_spec.split(','))
|
||||
tokens = [s.strip() for s in role_spec.split(',')]
|
||||
|
||||
# assume https://github.com URLs are git+https:// URLs and not
|
||||
# tarballs
|
||||
if 'github.com/' in tokens[0] and not tokens[0].startswith("git+"):
|
||||
# tarballs unless they end in '.zip'
|
||||
if 'github.com/' in tokens[0] and not tokens[0].startswith("git+") and not tokens[0].endswith('.tar.gz'):
|
||||
tokens[0] = 'git+' + tokens[0]
|
||||
|
||||
if '+' in tokens[0]:
|
||||
|
@ -408,7 +407,7 @@ def role_spec_parse(role_spec):
|
|||
|
||||
|
||||
def role_yaml_parse(role):
|
||||
if 'github.com' in role["src"] and 'http' in role["src"] and '+' not in role["src"]:
|
||||
if 'github.com' in role["src"] and 'http' in role["src"] and '+' not in role["src"] and not role["src"].endswith('.tar.gz'):
|
||||
role["src"] = "git+" + role["src"]
|
||||
if '+' in role["src"]:
|
||||
(scm, src) = role["src"].split('+')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue