MCPcopy Create free account
hub / github.com/FastLED/FastLED / _find_zccache

Function _find_zccache

ci/fingerprint/core.py:319–327  ·  view source on GitHub ↗

Locate the main zccache binary (for daemon-backed ``fp`` subcommand).

()

Source from the content-addressed store, hash-verified

317
318
319def _find_zccache() -> str:
320 """Locate the main zccache binary (for daemon-backed ``fp`` subcommand)."""
321 global _ZCCACHE_BIN
322 if _ZCCACHE_BIN is not None:
323 return _ZCCACHE_BIN
324 found = shutil.which("zccache")
325 if found is not None:
326 _ZCCACHE_BIN = found
327 return found or ""
328
329
330def _find_zccache_fp() -> str:

Callers 1

_run_zccacheFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected