mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-28 08:55:51 +01:00
...
This commit is contained in:
parent
880c1409b0
commit
3a27588b5d
1 changed files with 2 additions and 3 deletions
|
|
@ -7,8 +7,7 @@
|
|||
|
||||
import os, shutil, subprocess, tempfile, json, time, filecmp, sys
|
||||
|
||||
from setup import Command, __version__, require_clean_git, require_git_master
|
||||
from setup.upload import installers
|
||||
from setup import Command, __version__, require_clean_git, require_git_master, installer_names
|
||||
from setup.parallel_build import parallel_build, create_job
|
||||
|
||||
|
||||
|
|
@ -58,7 +57,7 @@ def run(self, opts):
|
|||
p.communicate('\n'.join(session).encode('utf-8'))
|
||||
p.wait()
|
||||
|
||||
for installer in installers(include_source=False):
|
||||
for installer in installer_names(include_source=False):
|
||||
installer = self.j(self.d(self.SRC), installer)
|
||||
if not os.path.exists(installer) or os.path.getsize(installer) < 10000:
|
||||
raise SystemExit(
|
||||
|
|
|
|||
Loading…
Reference in a new issue