(path, repo_root)
| 10 | |
| 11 | |
| 12 | def remove_worktree(path, repo_root): |
| 13 | if os.path.exists(path): |
| 14 | run_command(f"git worktree remove --force {path}", cwd=repo_root, check=False) |
| 15 | |
| 16 | |
| 17 | def check_for_extension_build(makefile): |
no test coverage detected