From 25e92ba9a18cc85821e88cf4d5b9faf8ef053221 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 17 Oct 2023 16:31:30 -0700 Subject: [PATCH] Merge Mach-O bundles too --- desktop/scripts/macos-merge-universal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/scripts/macos-merge-universal.py b/desktop/scripts/macos-merge-universal.py index 1c9af52f..5ceb78ae 100755 --- a/desktop/scripts/macos-merge-universal.py +++ b/desktop/scripts/macos-merge-universal.py @@ -16,6 +16,7 @@ def get_binary_arches(app_dir): out = subprocess.check_output(["file", filename]).decode("utf-8") if ( "Mach-O 64-bit executable" in out + or "Mach-O 64-bit bundle" in out or "Mach-O 64-bit dynamically linked shared library" in out ): arm64, x86 = False, False