Merge pull request #767 from mislavperi/main

Expanded podman support
This commit is contained in:
Joseph Garrone 2025-01-23 15:36:21 +00:00 committed by GitHub
commit 5de629acf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,7 +56,7 @@ export async function command(params: {
?.toString("utf8"); ?.toString("utf8");
} catch {} } catch {}
if (commandOutput?.includes("Docker") || commandOutput?.includes("podman")) { if (["Docker", "docker", "podman"].includes(commandOutput?)) {
break exit_if_docker_not_installed; break exit_if_docker_not_installed;
} }