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

This commit is contained in:
David Ostrovsky
2016-11-18 02:16:09 +00:00
committed by Gerrit Code Review

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)