()
| 68 | } |
| 69 | |
| 70 | function getRuntime() { |
| 71 | const runtime = detectRuntime(); |
| 72 | if (!runtime) { |
| 73 | console.error('Error: No container runtime found. Install Docker or Podman, or set CONTAINER_RUNTIME=docker|podman.'); |
| 74 | process.exit(1); |
| 75 | } |
| 76 | return runtime; |
| 77 | } |
| 78 | |
| 79 | function getRuntimeLabel() { |
| 80 | const runtime = getRuntime(); |
no test coverage detected