keycloakify 11.8.10 → 11.8.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/97.index.js
CHANGED
@@ -1556,8 +1556,11 @@ async function command(params) {
|
|
1556
1556
|
catch (_e) {
|
1557
1557
|
commandOutput = "";
|
1558
1558
|
}
|
1559
|
-
|
1560
|
-
|
1559
|
+
commandOutput = commandOutput.trim().toLowerCase();
|
1560
|
+
for (const term of ["docker", "podman"]) {
|
1561
|
+
if (commandOutput.includes(term)) {
|
1562
|
+
break exit_if_docker_not_installed;
|
1563
|
+
}
|
1561
1564
|
}
|
1562
1565
|
console.log([
|
1563
1566
|
`${source_default().red("Docker required.")}`,
|
package/package.json
CHANGED
@@ -58,8 +58,12 @@ export async function command(params: {
|
|
58
58
|
commandOutput = "";
|
59
59
|
}
|
60
60
|
|
61
|
-
|
62
|
-
|
61
|
+
commandOutput = commandOutput.trim().toLowerCase();
|
62
|
+
|
63
|
+
for (const term of ["docker", "podman"]) {
|
64
|
+
if (commandOutput.includes(term)) {
|
65
|
+
break exit_if_docker_not_installed;
|
66
|
+
}
|
63
67
|
}
|
64
68
|
|
65
69
|
console.log(
|