From 0b36240c496ace1220fe2614211d2b8ac8b98832 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Wed, 9 Sep 2026 23:15:14 +0200 Subject: bootstrap/neovim: Robustere Installation der Pakete --- bootstrap/neovim.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bootstrap/neovim.sh') diff --git a/bootstrap/neovim.sh b/bootstrap/neovim.sh index eabee0f..47efd8f 100755 --- a/bootstrap/neovim.sh +++ b/bootstrap/neovim.sh @@ -53,10 +53,10 @@ install_pkg() { case "$OS" in Darwin) - brew install "$package" + brew install -q "$package" || printf "✗ Installation von %s fehlgeschlagen\n" "$package" ;; FreeBSD) - doas pkg install -y "$package" + doas pkg install -qy "$package" || printf "✗ Installation von %s fehlgeschlagen\n" "$package" ;; esac } @@ -75,7 +75,7 @@ install_npm() { fi printf "→ Installiere npm-Paket %s\n" "$package" - npm install -g "$package" + npm install -g --loglevel=warn "$package" || printf "✗ npm-Installation von %s fehlgeschlagen\n" "$package" } install_pipx() { @@ -92,7 +92,7 @@ install_pipx() { fi printf "→ Installiere pipx-Paket %s\n" "$package" - pipx install "$package" + pipx install -q "$package" || printf "✗ pipx-Installation von %s fehlgeschlagen\n" "$package" } install_prerequisites() { -- cgit v1.3