From befcb8e38782882c48ff826512ea3379b31c042c Mon Sep 17 00:00:00 2001 From: jonathan Date: Fri, 17 Oct 2025 20:52:29 +0000 Subject: [PATCH] Update install.py --- install.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.py b/install.py index e8b3294..5be050f 100644 --- a/install.py +++ b/install.py @@ -1,6 +1,10 @@ import os import platform +rhel_packages = [ + 'epel-release' +] + linux_packages = [ 'git', 'zsh' @@ -50,5 +54,7 @@ if __name__ == "__main__": print(f'is_windows: {is_windows}, is_macos: {is_macos}, is_linux: {is_linux}, is_debian: {is_debian}, is_rhel: {is_rhel}') check_os() update_system() + if is_rhel: + for p in rhel_packages: install(p) if is_linux: for p in linux_packages: install(p) \ No newline at end of file