From d65ed5993cdb2f2df2f428a5154f59e56b204406 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 19 Dec 2021 22:42:36 +0530 Subject: [PATCH] New bypy CLI for export --- setup.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index f061f47a2..addb79715 100755 --- a/setup.py +++ b/setup.py @@ -1433,12 +1433,9 @@ def main() -> None: package(args, bundle_type='macos-package') print('kitty.app successfully built!') elif args.action == 'export-ci-bundles': - cmd = [sys.executable, '../bypy', 'export'] - dest = ['download.calibre-ebook.com:/srv/download/ci/kitty'] - subprocess.check_call(cmd + ['linux'] + dest) - subprocess.check_call(cmd + ['macos'] + dest) - subprocess.check_call(cmd + ['linux', '32'] + dest) - subprocess.check_call(cmd + ['linux', 'arm64'] + dest) + cmd = [sys.executable, '../bypy', 'export', 'download.calibre-ebook.com:/srv/download/ci/kitty'] + subprocess.check_call(cmd + ['linux']) + subprocess.check_call(cmd + ['macos']) if __name__ == '__main__':