Merge pull request 'fix: bootstrap.sh erkennt bereits installiertes fnm' (#19) from fix/bootstrap-fnm-erkennung into main

This commit was merged in pull request #19.
This commit is contained in:
2026-05-11 19:40:40 +02:00
+5 -3
View File
@@ -82,9 +82,11 @@ if command -v npm &>/dev/null; then
|| missing_other+=("npm install -g markdownlint-cli2") || missing_other+=("npm install -g markdownlint-cli2")
else else
if ! command -v markdownlint-cli2 &>/dev/null; then if ! command -v markdownlint-cli2 &>/dev/null; then
echo " FEHLT markdownlint-cli2 (Node.js nicht vorhanden)" echo " FEHLT markdownlint-cli2 (npm nicht vorhanden)"
missing_other+=("curl -fsSL https://fnm.vercel.app/install | bash" if ! command -v fnm &>/dev/null; then
"fnm install --lts" missing_other+=("curl -fsSL https://fnm.vercel.app/install | bash")
fi
missing_other+=("fnm install --lts"
"npm install -g markdownlint-cli2") "npm install -g markdownlint-cli2")
else else
echo " OK markdownlint-cli2 ($(markdownlint-cli2 --version 2>/dev/null | head -1 || true))" echo " OK markdownlint-cli2 ($(markdownlint-cli2 --version 2>/dev/null | head -1 || true))"