From 53fe224b3876b235b1cb704412836dff4a3f4650 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 22 Mar 2025 12:59:11 -0400 Subject: [PATCH] Fix searching for warnings and debug in log. --- scripts/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update.py b/scripts/update.py index 22e6dc68..0aa708a3 100644 --- a/scripts/update.py +++ b/scripts/update.py @@ -255,7 +255,7 @@ print(f"Press enter to launch Rack and test the following packages: {manifest_ve input() try: common.system(f"cd {RACK_SYSTEM_DIR} && ./Rack") - common.system(f"cd {RACK_USER_DIR} && grep '\\bwarn|debug\\b' log.txt || true") + common.system(f"cd {RACK_USER_DIR} && grep -P '\\bwarn|debug\\b' log.txt || true") except: print(f"Rack failed! Enter to continue if desired")