(distro: LinuxDistroInfo)
| 209 | * identically for the same machine. |
| 210 | */ |
| 211 | export function distroLabel(distro: LinuxDistroInfo): string { |
| 212 | if (distro.isWsl) return "WSL"; |
| 213 | return distro.prettyName ?? "Linux"; |
| 214 | } |
| 215 | |
| 216 | export interface SharedLibProbeResult { |
| 217 | /** True when the probe ran and every required library resolved. */ |
no outgoing calls
no test coverage detected