nit: show dir in title, and less... jank (#7138)

This commit is contained in:
Michael Neale
2026-02-13 15:16:46 +11:00
committed by GitHub
parent 860c7d7b97
commit 85348d2745
8 changed files with 183 additions and 216 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ check_recipe_output() {
local tmpfile=$1
local mode=$2
# Check for delegate tool invocation (new format: "─── delegate |")
if grep -q "─── delegate" "$tmpfile"; then
# Check for delegate tool invocation (old: "─── delegate |", new: "▸ delegate")
if grep -qE "(─── delegate)|(▸.*delegate)" "$tmpfile"; then
echo "✓ SUCCESS: Delegate tool invoked"
RESULTS+=("✓ Delegate tool invocation ($mode)")
else