From e5be31ee14c80d2b2eb0bf14a2ee2ea0f2a76d4f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 17 Nov 2022 10:27:53 +0530 Subject: [PATCH] build in non-interactive mode while publishing --- publish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.py b/publish.py index 721f90fa6..9e3a02216 100755 --- a/publish.py +++ b/publish.py @@ -76,9 +76,9 @@ def run_build(args: Any) -> None: for x in ('64', '32', 'arm64'): prefix = f'python ../bypy linux --arch {x} ' - run_with_retry(prefix + 'program') + run_with_retry(prefix + 'program --non-interactive') call(prefix + 'shutdown', echo=True) - run_with_retry('python ../bypy macos program --sign-installers --notarize') + run_with_retry('python ../bypy macos program --sign-installers --notarize --non-interactive') call('python ../bypy macos shutdown', echo=True) call('./setup.py build-static-binaries')