From c738f929152504d5766e15f404003d4cc455ea9a Mon Sep 17 00:00:00 2001 From: Nikolas Date: Fri, 18 Jul 2025 10:41:49 -0700 Subject: [PATCH] remove the gaurenteed fail --- counterstrike2/cs2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterstrike2/cs2.py b/counterstrike2/cs2.py index b8e142b..e28f02e 100644 --- a/counterstrike2/cs2.py +++ b/counterstrike2/cs2.py @@ -230,6 +230,6 @@ if __name__ == "__main__": except Exception as ex: logging.error("something went wrong running the benchmark!") logging.exception(ex) + sys.exit(1) finally: terminate_processes(PROCESS_NAME) - sys.exit(1)