mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-30 08:03:54 +02:00
Dont mute curl on the unix ci server
This commit is contained in:
parent
b10142db22
commit
9f4bf26b9d
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ def download_and_decompress(url, dest, compression=None):
|
|||
for i in range(5):
|
||||
print('Downloading', url, '...')
|
||||
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:
|
||||
decompress(f.name, dest, compression)
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue