Make arm64 binary deps available for dev.sh

Fixes #10197
This commit is contained in:
Kovid Goyal
2026-06-27 17:29:31 +05:30
parent 1096e9da5e
commit f6d1b11b29
2 changed files with 7 additions and 2 deletions

View File

@@ -2323,6 +2323,7 @@ def do_build(args: Options) -> None:
elif args.action == 'export-ci-bundles':
cmd = [sys.executable, '../bypy', 'export', 'download.calibre-ebook.com:/srv/download/ci/kitty']
subprocess.check_call(cmd + ['linux'])
subprocess.check_call(cmd + ['linux', '--arch=arm64'])
subprocess.check_call(cmd + ['macos'])
elif args.action == 'build-static-binaries':
build_static_binaries(args, launcher_dir)