(file: Path)
| 50 | |
| 51 | |
| 52 | def is_macho_binary(file: Path) -> bool: |
| 53 | if not file.is_file(): |
| 54 | return False |
| 55 | with file.open(mode="rb") as f: |
| 56 | magic = f.read(4) |
| 57 | return magic in MACHO_MAGIC_BYTES |
| 58 | |
| 59 | |
| 60 | def calculate_install_dir(yaml_file, subdir=None): |
no outgoing calls