| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b4558ce commit a2072c3
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,9 @@ for scenario in "${scenarios[@]}"; do | |||
| 43 | 43 | done | |
| 44 | 44 | ||
| 45 | 45 | # A stale baseline entry is a configuration error a solo rerun cannot excuse. | |
| 46 | - if printf '%s\n' "$plain" | grep -q '^Stale baseline entries'; then | ||
| 46 | + # Here-string, not a pipe: grep -q quitting early would SIGPIPE printf and, | ||
| 47 | + # under pipefail, skip this guard exactly when the pattern is present. | ||
| 48 | + if grep -q '^Stale baseline entries' <<<"$plain"; then | ||
| 47 | 49 | echo "Suite also reported stale baseline entries; not retrying." >&2 | |
| 48 | 50 | exit "$rc" | |
| 49 | 51 | fi | |
| Back | FazBrowse Home | New Git URL |
0 commit comments