Update install.py

This commit is contained in:
2025-10-15 19:52:24 +00:00
parent 4dd0bb3c5e
commit 8905afc1e6

View File

@@ -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")