mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-22 19:04:11 +02:00
Ensure multitail building does not assume tty
This commit is contained in:
parent
50ae40a73f
commit
71c1232fa4
1 changed files with 2 additions and 0 deletions
|
|
@ -21,6 +21,8 @@ def build_single(which, bitness, shutdown=True):
|
|||
if bitness:
|
||||
cmd.append(bitness)
|
||||
cmd.append('calibre')
|
||||
if not sys.stdout.isatty():
|
||||
cmd.append('--no-tty')
|
||||
cmd.append('--sign-installers')
|
||||
env = os.environ.copy()
|
||||
env['CALIBRE_SRC_DIR'] = base
|
||||
|
|
|
|||
Loading…
Reference in a new issue