This commit is contained in:
Kovid Goyal 2021-12-23 13:39:17 +05:30
parent ca2003b405
commit 74600b7c07
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -225,9 +225,9 @@ class ExportPackages(Command):
exe = get_exe()
for which in ('linux', 'macos', 'windows'):
cmd = [exe, bypy, 'export'] + ['download.calibre-ebook.com:/srv/download/ci/calibre6'] + [which]
ret = subprocess.Popen(cmd).wait()
if ret != 0:
raise SystemExit(ret)
ret = subprocess.Popen(cmd).wait()
if ret != 0:
raise SystemExit(ret)
class ExtDev(Command):