download_file.py: Add --show-error option to curl invocation

Change-Id: I9e7708e6e425a0a3eeb4e22172746b3dc2b094a0
This commit is contained in:
David Ostrovsky 2016-11-14 09:10:50 -08:00 committed by David Pursehouse
parent fb987fb2ed
commit 0883d977cd

View File

@ -103,7 +103,7 @@ if not path.exists(cache_ent):
print('Download %s' % src_url, file=stderr)
try:
check_call(['curl', '--proxy-anyauth', '-ksfo', cache_ent, src_url])
check_call(['curl', '--proxy-anyauth', '-ksSfo', cache_ent, src_url])
except OSError as err:
print('could not invoke curl: %s\nis curl installed?' % err, file=stderr)
exit(1)