Commit f521fd8
fix(tests): grep -c already outputs 0 on no match, || echo "0" duplicated it
The shellcheck test captured "0\n0" instead of "0" because grep -c
outputs the count (0) even on exit code 1, then || echo "0" added
a second zero. Changed to || true.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016Sw2Ti3a4Ad8U6JuAyNib11 parent d5df7e1 commit f521fd8
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
290 | 290 | | |
291 | 291 | | |
292 | 292 | | |
293 | | - | |
| 293 | + | |
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
| |||
0 commit comments