The host's baked binary filename, e.g. ``cmdop-core-darwin-arm64``.
()
| 49 | |
| 50 | |
| 51 | def _binary_name() -> str: |
| 52 | """The host's baked binary filename, e.g. ``cmdop-core-darwin-arm64``.""" |
| 53 | slug = _host_slug() |
| 54 | exe = ".exe" if sys.platform == "win32" else "" |
| 55 | return f"cmdop-core-{slug}{exe}" |
| 56 | |
| 57 | |
| 58 | def _make_executable(path: str) -> None: |