diff --git a/admin/osx/make_universal.py b/admin/osx/make_universal.py index 1b31e8317..e5915e108 100755 --- a/admin/osx/make_universal.py +++ b/admin/osx/make_universal.py @@ -34,7 +34,8 @@ def path_relative_to_package(app_package_file_path, file_path): def is_executable(file_path): output = str(execute(["file", file_path])) if (("Mach-O 64-bit dynamically linked shared library" in output) - or ("Mach-O 64-bit executable" in output)): + or ("Mach-O 64-bit executable" in output) + or ("Mach-O 64-bit bundle" in output)): return True return False