Delete all files created by this script.
(context)
| 403 | |
| 404 | |
| 405 | def clean_contents(context): |
| 406 | """Delete all files created by this script.""" |
| 407 | if CROSS_BUILD_DIR.exists(): |
| 408 | log("🧹", f"Deleting {CROSS_BUILD_DIR} ...") |
| 409 | shutil.rmtree(CROSS_BUILD_DIR) |
| 410 | |
| 411 | if LOCAL_SETUP.exists(): |
| 412 | if LOCAL_SETUP.read_bytes() == LOCAL_SETUP_MARKER: |
| 413 | log("🧹", f"Deleting generated {LOCAL_SETUP} ...") |
nothing calls this directly
no test coverage detected
searching dependent graphs…