mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Merge pull request #7027 from nextcloud/bugfix/make_universal
Fix make_universal.py not taking into account 64-bit bundle dylibs
This commit is contained in:
commit
b6c439ffc8
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user