From d405f9f397d992c50fa12589f7a8a382fc493b60 Mon Sep 17 00:00:00 2001 From: Astound Date: Mon, 19 May 2025 14:22:32 -0500 Subject: [PATCH] Add more support OS --- hyperterm/core/autodep.sh | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperterm/core/autodep.sh b/hyperterm/core/autodep.sh index a106c82..300906b 100644 --- a/hyperterm/core/autodep.sh +++ b/hyperterm/core/autodep.sh @@ -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) diff --git a/install.sh b/install.sh index 139ec68..55312d3 100644 --- a/install.sh +++ b/install.sh @@ -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)