MCPcopy Create free account
hub / github.com/ResearAI/DeepScientist / _binary_names

Function _binary_names

src/deepscientist/tinytex.py:60–66  ·  view source on GitHub ↗
(binary: str)

Source from the content-addressed store, hash-verified

58
59
60def _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
69def _tinytex_bin_dirs(root: Path) -> list[Path]:

Callers 1

resolve_tinytex_binaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected