1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Pass through error message when repo not found

This commit is contained in:
Peter Sankauskas 2012-07-19 15:48:13 -07:00
parent f1148fc26d
commit 5e35cd6466

View file

@ -190,7 +190,7 @@ else:
# handle errors from clone or pull # handle errors from clone or pull
if out.find('error') != -1: if out.find('error') != -1 or err.find('ERROR') != -1:
fail_json(out=out, err=err) fail_json(out=out, err=err)
# switch to version specified regardless of whether # switch to version specified regardless of whether