Correction alpine: s/sudo/su -c / + clang

This commit is contained in:
2025-10-03 22:48:21 +02:00
parent d8f7172679
commit ac2b6b5c8c

View File

@@ -19,8 +19,8 @@ case "$DISTRO" in
sudo apt-get install -y neovim git curl sudo apt-get install -y neovim git curl
;; ;;
"alpine") "alpine")
sudo apk update su -c "apk update"
sudo apk add neovim git curl su -c "apk add neovim git curl clang"
;; ;;
*) *)
echo "Distribution non supportée: $DISTRO" echo "Distribution non supportée: $DISTRO"