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

Function _is_stale_build_error

ci/wasm_build.py:418–421  ·  view source on GitHub ↗

Check if build output indicates a stale build state error.

(output: str)

Source from the content-addressed store, hash-verified

416
417
418def _is_stale_build_error(output: str) -> bool:
419 """Check if build output indicates a stale build state error."""
420 output_lower = output.lower()
421 return any(pattern in output_lower for pattern in _STALE_BUILD_PATTERNS)
422
423
424def _recover_stale_wasm_build(build_dir: Path) -> bool:

Callers 1

build_libraryFunction · 0.85

Calls 1

anyFunction · 0.85

Tested by

no test coverage detected