Compare commits

..

2 Commits

Author SHA1 Message Date
f5a300953a Bump version 2025-01-24 21:27:03 +01:00
ab9a962f58 #771 2025-01-24 21:26:43 +01:00
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "keycloakify",
"version": "11.8.10",
"version": "11.8.11",
"description": "Framework to create custom Keycloak UIs",
"repository": {
"type": "git",

View File

@ -58,8 +58,12 @@ export async function command(params: {
commandOutput = "";
}
if (["docker", "podman"].includes(commandOutput.toLowerCase())) {
break exit_if_docker_not_installed;
commandOutput = commandOutput.trim().toLowerCase();
for (const term of ["docker", "podman"]) {
if (commandOutput.includes(term)) {
break exit_if_docker_not_installed;
}
}
console.log(