MCPcopy Create free account
hub / github.com/apache/burr / _remove_ui_build_artifacts

Function _remove_ui_build_artifacts

scripts/apache_release.py:406–412  ·  view source on GitHub ↗

Remove pre-built UI artifacts to ensure clean build.

()

Source from the content-addressed store, hash-verified

404
405
406def _remove_ui_build_artifacts() -> None:
407 """Remove pre-built UI artifacts to ensure clean build."""
408 ui_build_dir = os.path.join("burr", "tracking", "server", "build")
409 if os.path.exists(ui_build_dir):
410 print(f" Removing UI build artifacts: {ui_build_dir}")
411 shutil.rmtree(ui_build_dir)
412 print(" ✓ UI build artifacts removed")
413
414
415def _build_sdist_from_git(version: str, output_dir: str = "dist") -> str:

Callers 1

_build_sdist_from_gitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected