(self, args, debug=False)
| 368 | return output |
| 369 | |
| 370 | def _build_temp(self, args, debug=False): |
| 371 | self._build_data(args) |
| 372 | |
| 373 | name = 'project-%s' % self.temp_id |
| 374 | path = os.path.join(self._get_path(), name) |
| 375 | |
| 376 | if os.path.exists(path): |
| 377 | shutil.rmtree(path) |
| 378 | os.mkdir(path) |
| 379 | |
| 380 | return self._build_target(path, args, debug=debug) |
| 381 | |
| 382 | def do_new(self, args): |
| 383 | c = self._get_config() |
no test coverage detected