From 5dbf86164a0b945ed779ca3f10c078054e0050fd Mon Sep 17 00:00:00 2001 From: Boyan Date: Fri, 7 Feb 2025 17:26:05 +0100 Subject: [PATCH] fixed bug --- ucompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ucompile b/ucompile index 13dac60..63d4954 100755 --- a/ucompile +++ b/ucompile @@ -13,7 +13,7 @@ def check_dependencies() -> None: for command in commands: if os.system(f"which {command} > /dev/null") != 0: - print(f"{Fore.ORANGE}WARNING: {command} not found{Style.RESET_ALL}") + print(f"{Fore.RED}WARNING: {command} not found{Style.RESET_ALL}") return