aggiornamenti installazione e README

This commit is contained in:
2026-01-22 14:04:47 +01:00
parent 1a4423ed0d
commit 6bd9f6427b
7 changed files with 140 additions and 12 deletions
+8 -4
View File
@@ -3,15 +3,19 @@
function feat_addpacks_curl() {
if ! feat_missing "apt-get"; then
sudo apt-get install -y curl
sudo apt-get update
sudo apt-get install -y bash curl
elif ! feat_missing "pacman"; then
sudo pacman -S --needed curl
sudo pacman -S --needed bash curl
elif ! feat_missing "apk"; then
sudo apk add --no-cache curl
sudo apk add --no-cache bash curl
elif ! feat_missing "yum"; then
sudo yum install bash curl
elif ! feat_missing "zypper"; then
sudo zypper in bash curl
fi
}
function feat_add_curl() {
feat_addpacks_curl
}