(self, command: CMD)
| 84 | return output |
| 85 | |
| 86 | def execute(self, command: CMD): |
| 87 | logging.info("Command (" + command.cmd + ")") |
| 88 | subprocess.run(command.cmd, shell=True, cwd=command.path, check=True) |
| 89 | |
| 90 | def get_compile_cmd_by_src(self, src_path: Path) -> CMD: |
| 91 | keys2 = { |