From 370f4421d263f1dfcbd478a1c689e8f07a3cd8bd Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:47:44 -0400 Subject: [PATCH] narrow grep search --- lib/sc-launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sc-launch.sh b/lib/sc-launch.sh index 942eb45..e323e82 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -56,7 +56,7 @@ wine_exec="wine" # Kill the wine prefix when this script exits # This makes sure there will be no lingering background wine processes update_check() { - while winedbg --command "info proc" | grep -qi setup; do + while winedbg --command "info proc" | grep -qi "rsi.*setup"; do sleep 2 done }