diff --git a/util/system.py b/util/system.py index 5c9be07..edd887e 100644 --- a/util/system.py +++ b/util/system.py @@ -14,7 +14,7 @@ def check_exec(name: Union[os.PathLike[str], str]) -> bool: elif is_linux(): check_process = subprocess.Popen([ "which", name - ]) + ], stdout=subprocess.PIPE) check_process.wait() return check_process.returncode == 0 else: