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

Function _find_zccache_fp

ci/fingerprint/core.py:330–341  ·  view source on GitHub ↗

Locate the standalone zccache-fp binary (fallback).

()

Source from the content-addressed store, hash-verified

328
329
330def _find_zccache_fp() -> str:
331 """Locate the standalone zccache-fp binary (fallback)."""
332 global _ZCCACHE_FP_BIN
333 if _ZCCACHE_FP_BIN is not None:
334 return _ZCCACHE_FP_BIN
335 found = shutil.which("zccache-fp")
336 if found is None:
337 raise FileNotFoundError(
338 "zccache-fp binary not found on PATH. Install it with: pip install zccache"
339 )
340 _ZCCACHE_FP_BIN = found
341 return found
342
343
344def _run_zccache(

Callers 1

_run_zccacheFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected