(self, dest, name)
| 224 | exec_and_log(program, cwd=self.td, env=environment) |
| 225 | |
| 226 | def get_tools_archive(self, dest, name): |
| 227 | log("copying built files to %s" % dest) |
| 228 | |
| 229 | with dest.open("wb") as fh: |
| 230 | create_tar_from_directory(fh, self.td / "out" / "tools") |
| 231 | |
| 232 | def get_file(self, path): |
| 233 | log("retrieving file %s" % path) |
no test coverage detected