(self)
| 38 | self.folders.build.unlink() |
| 39 | |
| 40 | def make_build_folder(self) -> None: |
| 41 | if not tc_build.utils.path_is_set(self.folders.build): |
| 42 | msg = 'No build folder set?' |
| 43 | raise RuntimeError(msg) |
| 44 | |
| 45 | self.folders.build.mkdir(parents=True) |
| 46 | |
| 47 | def run_cmd( |
| 48 | self, cmd: tc_build.utils.ValidCmd, capture_output: bool = False, cwd: Path | None = None |