Update install.py

This commit is contained in:
2025-10-17 20:31:40 +00:00
parent 0f15f96ea7
commit 3b799bbb94

View File

@@ -35,7 +35,7 @@ def install(package):
else:
print(f"Install not supported for: {os_type}")
exit(1)
if is_linux and package in after_command:
if is_linux and package in linux_after_command:
os.system(linux_after_command[package])
def check_os():