Commit a03ce76
authored
fix(ci): prevent grep pipe from failing the diagnostics step (#2170)
grep exits 1 when no match is found. Under bash -e with pipefail, this
would abort the failure-capture step before it finishes, defeating its
purpose. Use grep -m1 with || true to ensure the step always succeeds.
Signed-off-by: Bruno Verachten <gounthar@gmail.com>1 parent 0b94e4a commit a03ce76
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
84 | | - | |
| 84 | + | |
85 | 85 | | |
0 commit comments