From c5c2ec4949be0fe093a4a29946d98bacb5906456 Mon Sep 17 00:00:00 2001 From: amanape <83104063+amanape@users.noreply.github.com> Date: Wed, 11 Mar 2026 13:33:04 +0400 Subject: [PATCH] Replace remaining 'get stuff done' instances in verify script --- scripts/verify-s04.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/verify-s04.sh b/scripts/verify-s04.sh index 9d4c847cb..090b40e24 100755 --- a/scripts/verify-s04.sh +++ b/scripts/verify-s04.sh @@ -162,7 +162,7 @@ wait "$smoke_pid" 2>/dev/null || true ext_errors=$(grep "Extension load error" "$smoke_out" 2>/dev/null | wc -l | tr -d ' ') # Strip ANSI escape codes for branding check plain_out=$(sed 's/\x1b\[[0-9;]*m//g' "$smoke_out" 2>/dev/null || cat "$smoke_out") -has_gsd=$(echo "$plain_out" | grep -qi "gsd\|get stuff done" && echo "yes" || echo "no") +has_gsd=$(echo "$plain_out" | grep -qi "gsd\|get shit done" && echo "yes" || echo "no") if [ "$ext_errors" -eq 0 ]; then pass "8a — zero Extension load errors on launch" @@ -172,7 +172,7 @@ else fi if [ "$has_gsd" = "yes" ]; then - pass "8b — \"gsd\" / \"get stuff done\" branding found in launch output" + pass "8b — \"gsd\" / \"get shit done\" branding found in launch output" else # Fallback: check if binary self-identifies differently (not "pi") has_pi_only=$(echo "$plain_out" | grep -qi "^pi\b" && echo "yes" || echo "no")