mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 14:41:23 -07:00
Improved handling of role_version in repo_url_to_role_name
This commit is contained in:
parent
1803976a40
commit
4803e923ff
2 changed files with 4 additions and 1 deletions
|
@ -356,6 +356,8 @@ def repo_url_to_role_name(repo_url):
|
|||
trailing_path = repo_url.split('/')[-1]
|
||||
if trailing_path.endswith('.git'):
|
||||
trailing_path = trailing_path[:-4]
|
||||
if ',' in trailing_path:
|
||||
trailing_path = trailing_path.split(',')[0]
|
||||
return trailing_path
|
||||
|
||||
def json_loads(data):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue