From 6a657eec339132bd2e52b73be8c3cc6c6130db76 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 16 Dec 2021 20:37:46 +0530 Subject: [PATCH] New CLI for bypy --- publish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.py b/publish.py index 88390e009..e2dd393e8 100755 --- a/publish.py +++ b/publish.py @@ -59,8 +59,8 @@ def call(*cmd: str, cwd: Optional[str] = None, echo: bool = False) -> None: def run_build(args: Any) -> None: for x in ('64', '32', 'arm64'): - call(f'python ../bypy linux {x} program', echo=True) - call(f'python ../bypy linux {x} shutdown', echo=True) + call(f'python ../bypy linux --arch {x} program', echo=True) + call(f'python ../bypy linux --arch {x} shutdown', echo=True) call('python ../bypy macos program --sign-installers --notarize', echo=True) call('python ../bypy macos shutdown')