From f09bd44ae456cbd26f74687c600e424d14f245b7 Mon Sep 17 00:00:00 2001 From: jonathan Date: Fri, 17 Oct 2025 20:26:12 +0000 Subject: [PATCH] Update install.py --- install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.py b/install.py index c157283..b40ea14 100644 --- a/install.py +++ b/install.py @@ -19,7 +19,7 @@ def update_system(): os.system('sudo apt-get update && sudo apt-get upgrade -y') elif is_rhel: os.system('sudo dnf upgrade -y') - else + else: print(f"Update not supported for: {os_type}") exit(1) @@ -28,7 +28,7 @@ def install(package): os.system(f'sudo apt-get install {p} -y') elif is_rhel: os.system(f'sudo dnf install {p} -y') - else + else: print(f"Install not supported for: {os_type}") exit(1)