mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Dont mute curl on the unix ci server
This commit is contained in:
parent
b10142db22
commit
9f4bf26b9d
@ -70,7 +70,7 @@ def download_and_decompress(url, dest, compression=None):
|
|||||||
for i in range(5):
|
for i in range(5):
|
||||||
print('Downloading', url, '...')
|
print('Downloading', url, '...')
|
||||||
with NamedTemporaryFile() as f:
|
with NamedTemporaryFile() as f:
|
||||||
ret = subprocess.Popen(['curl', '-fSsL', url], stdout=f).wait()
|
ret = subprocess.Popen(['curl', '-fSL', url], stdout=f).wait()
|
||||||
if ret == 0:
|
if ret == 0:
|
||||||
decompress(f.name, dest, compression)
|
decompress(f.name, dest, compression)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user