Commit b7a74e21 by James Cammarata

Merge pull request #8948 from sergevanginderachter/issue_8823

ansible-galaxy: exit with rc 1 if role doesn't exist/is not found
parents 4f03dd65 2474ce58
......@@ -759,6 +759,7 @@ def execute_install(args, options, parser):
role_data = api_lookup_role_by_name(api_server, role_src)
if not role_data:
print "- sorry, %s was not found on %s." % (role_src, api_server)
exit_without_ignore(options)
continue
role_versions = api_fetch_role_related(api_server, 'versions', role_data['id'])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment