(self, path)
| 230 | create_tar_from_directory(fh, self.td / "out" / "tools") |
| 231 | |
| 232 | def get_file(self, path): |
| 233 | log("retrieving file %s" % path) |
| 234 | |
| 235 | p = self.td / path |
| 236 | with p.open("rb") as fh: |
| 237 | return fh.read() |
| 238 | |
| 239 | def get_output_archive(self, path, as_tar=False): |
| 240 | p = self.td / "out" / path |