Ensure multitail building does not assume tty

This commit is contained in:
Kovid Goyal 2017-05-10 21:56:42 +05:30
parent 50ae40a73f
commit 71c1232fa4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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