mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
made src more prominent
This commit is contained in:
parent
6ffd9c3025
commit
a6c0661d21
1 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,7 @@ from ansible.playbook.role.requirement import RoleRequirement
|
|||
class GalaxyCLI(CLI):
|
||||
|
||||
VALID_ACTIONS = ("init", "info", "install", "list", "remove", "search")
|
||||
SKIP_INFO_KEYS = ("name", "description", "readme_html", "related", "summary_fields", "average_aw_composite", "average_aw_score", "url" )
|
||||
SKIP_INFO_KEYS = ("name", "description", "readme_html", "related", "summary_fields", "average_aw_composite", "average_aw_score", "url", "src" )
|
||||
|
||||
def __init__(self, args, display=None):
|
||||
|
||||
|
@ -184,6 +184,7 @@ class GalaxyCLI(CLI):
|
|||
|
||||
text = "\nRole: %s \n" % role_info['name']
|
||||
text += "\tdescription: %s \n" % role_info['description']
|
||||
text += "\tsrc: %s \n" % role_info['src']
|
||||
|
||||
for k in sorted(role_info.keys()):
|
||||
|
||||
|
|
Loading…
Reference in a new issue