(cmd, cwd)
| 11 | |
| 12 | |
| 13 | def run_command(cmd, cwd): |
| 14 | print('Running command: %s' % ' '.join(str(item) for item in cmd), flush=True) |
| 15 | subprocess.check_call([str(item) for item in cmd], cwd=str(cwd)) |
| 16 | |
| 17 | |
| 18 | def resolve_executable(name): |
no outgoing calls
no test coverage detected