aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2023-10-17 16:31:30 -0700
committerMicah Lee <micah@micahflee.com>2023-10-17 16:31:30 -0700
commit25e92ba9a18cc85821e88cf4d5b9faf8ef053221 (patch)
treeb5fa289a1a68a0f6899ad3f3f349ed2080397d27
parentf3419e91222cfb29e6cfa788bc10b1c88bba9abd (diff)
downloadonionshare-25e92ba9a18cc85821e88cf4d5b9faf8ef053221.tar.gz
onionshare-25e92ba9a18cc85821e88cf4d5b9faf8ef053221.zip
Merge Mach-O bundles too
-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