From 6dbf32a5b19c8123cb2ba79681997fa140eac0d7 Mon Sep 17 00:00:00 2001
From: Boyan <boyan@confest.im>
Date: Wed, 4 Dec 2024 02:49:13 +0100
Subject: [PATCH] dev

---
 ucompile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ucompile b/ucompile
index ecb0e16..7b2158c 100755
--- a/ucompile
+++ b/ucompile
@@ -123,7 +123,7 @@ def run_input_cases(program, args):
 
 def python_compile(file_name, args):
     try:
-        if os.system("which pypy3 > /dev/null") == 0:
+        if os.system("which pypy3 &> /dev/null") == 0:
             print(f"{Fore.LIGHTMAGENTA_EX}Using pypy3{Style.RESET_ALL}")
             run_input_cases("pypy3 " + file_name, args)
             return