diff options
author | Astound <kirito@disroot.org> | 2025-05-19 14:30:26 -0500 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2025-05-19 14:30:26 -0500 |
commit | 7df48977ec6d40f646786407f9f7f1c5f95bd390 (patch) | |
tree | 19c2b07fba24940e6673985baa4be80ac52ed6a8 /hyperterm/core | |
parent | 4483419e9ca9140c2789223c19374d2cec1f6607 (diff) | |
download | hyperterm-7df48977ec6d40f646786407f9f7f1c5f95bd390.tar.lz hyperterm-7df48977ec6d40f646786407f9f7f1c5f95bd390.tar.xz hyperterm-7df48977ec6d40f646786407f9f7f1c5f95bd390.zip |
Add more support OS
Diffstat (limited to 'hyperterm/core')
-rw-r--r-- | hyperterm/core/autodep.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hyperterm/core/autodep.sh b/hyperterm/core/autodep.sh index a106c82..8973100 100644 --- a/hyperterm/core/autodep.sh +++ b/hyperterm/core/autodep.sh @@ -29,9 +29,12 @@ 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" ;; + opensuse*|suse) + INSTALLER="zypper --non-interactive install $pkg" + ;; void) INSTALLER="xbps-install -Sy $pkg" ;; |