(binary: str)
| 58 | |
| 59 | |
| 60 | def _binary_names(binary: str) -> list[str]: |
| 61 | normalized = str(binary or "").strip() |
| 62 | if not normalized: |
| 63 | return [] |
| 64 | if sys.platform.startswith("win"): |
| 65 | return [f"{normalized}.exe", f"{normalized}.bat", f"{normalized}.cmd", normalized] |
| 66 | return [normalized] |
| 67 | |
| 68 | |
| 69 | def _tinytex_bin_dirs(root: Path) -> list[Path]: |
no outgoing calls
no test coverage detected