Skip to content

Commit

Permalink
Merge pull request #7027 from nextcloud/bugfix/make_universal
Browse files Browse the repository at this point in the history
Fix make_universal.py not taking into account 64-bit bundle dylibs
  • Loading branch information
mgallien authored Sep 9, 2024
2 parents 89c91dd + d82c342 commit b6c439f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/osx/make_universal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b6c439f

Please sign in to comment.