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

Function _save_library_fingerprint

ci/wasm_build.py:397–403  ·  view source on GitHub ↗

Save source fingerprint after successful library build.

(build_dir: Path)

Source from the content-addressed store, hash-verified

395
396
397def _save_library_fingerprint(build_dir: Path) -> None:
398 """Save source fingerprint after successful library build."""
399 fingerprint_file = build_dir / "library_src_fingerprint"
400 try:
401 fingerprint_file.write_text(_compute_src_fingerprint(), encoding="utf-8")
402 except OSError:
403 pass
404
405
406# Error patterns that indicate stale build state (kept in sync with compile.py)

Callers 1

build_libraryFunction · 0.85

Calls 1

_compute_src_fingerprintFunction · 0.85

Tested by

no test coverage detected