()
| 77 | } |
| 78 | |
| 79 | function getRuntimeLabel() { |
| 80 | const runtime = getRuntime(); |
| 81 | return runtime.endsWith('podman') ? 'Podman' : 'Docker'; |
| 82 | } |
| 83 | |
| 84 | function run(args, options = {}) { |
| 85 | execSync(`${getRuntime()} ${args}`, { stdio: 'inherit', shell: true, ...options }); |
nothing calls this directly
no test coverage detected