mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Allow github style ssh repo names
This commit is contained in:
parent
537472f42c
commit
d6a725659e
3 changed files with 7 additions and 1 deletions
|
@ -362,7 +362,7 @@ def repo_url_to_role_name(repo_url):
|
|||
# gets the role name out of a repo like
|
||||
# http://git.example.com/repos/repo.git" => "repo"
|
||||
|
||||
if '://' not in repo_url:
|
||||
if '://' not in repo_url and '@' not in repo_url:
|
||||
return repo_url
|
||||
trailing_path = repo_url.split('/')[-1]
|
||||
if trailing_path.endswith('.git'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue