From 8905afc1e6811404f7aabb0fd15bb0cc98089f41 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 15 Oct 2025 19:52:24 +0000 Subject: [PATCH] Update install.py --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 8b2dd7c..7a215c9 100644 --- a/install.py +++ b/install.py @@ -3,7 +3,7 @@ import os def check_os(): """Checks the operating system and prints a message accordingly.""" - os_type = os.uname().system.lower() # Get OS name, lowercase for consistency + os_type = os.uname().sysname.lower() if os_type == "linux": print("Running on Linux")