This commit is contained in:
Kovid Goyal 2021-12-23 13:39:17 +05:30
parent 9dbf55839c
commit 21042dee17
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

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