aboutsummaryrefslogtreecommitdiff
path: root/desktop/scripts/macos-merge-universal.py
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/scripts/macos-merge-universal.py')
-rwxr-xr-xdesktop/scripts/macos-merge-universal.py1
1 files changed, 1 insertions, 0 deletions
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