(self, path: Path, buildpath: Path)
| 85 | |
| 86 | class BuildParser: |
| 87 | def __init__(self, path: Path, buildpath: Path): |
| 88 | |
| 89 | self.path = path.resolve() |
| 90 | self.buildpath = buildpath.resolve() |
| 91 | assert self.path.is_absolute() |
| 92 | assert self.buildpath.is_absolute() |
| 93 | assert self.output_dir.exists() |
| 94 | assert self.build_log_path.exists() |
| 95 | assert self.buildpath.exists() |
| 96 | |
| 97 | @property |
| 98 | def output_dir(self) -> Path: |