Add more support OS
Some checks failed
CI Pipeline / shasums (push) Failing after 29s
CI Pipeline / build (push) Has been skipped
git-sync-with-mirror / git-sync (push) Successful in 55s

This commit is contained in:
Astound 2025-05-19 14:22:32 -05:00
parent 4483419e9c
commit d405f9f397
Signed by: kaiser
GPG Key ID: 97504AF0027B1A56
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ function install_package() {
debian|ubuntu|linuxmint|elementary|pop)
INSTALLER="apt-get update && apt-get install -y $pkg"
;;
fedora)
fedora|rhel|centos|amzn|rocky|almalinux)
INSTALLER="dnf install -y $pkg"
;;
void)

View File

@ -60,7 +60,7 @@ function install_package() {
$sudo_cmd apt update
$sudo_cmd apt install -y "$pkg"
;;
fedora|rhel|centos)
fedora|rhel|centos|amzn|rocky|almalinux)
$sudo_cmd dnf install -y "$pkg"
;;
opensuse*|suse)