Commit 276b469
fix: avoid grep extended regex through orb shell quoting
The pattern `grep -vE '-(beta|rc|alpha)'` breaks when passed through
orb's intermediate shell layer — single quotes are stripped and grep
sees `-(` as an invalid option. Use `grep -v -e '-beta' -e '-rc'
-e '-alpha'` instead, which avoids parentheses entirely and works
reliably across shell quoting layers.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent 33a75e8 commit 276b469
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
215 | 215 | | |
216 | 216 | | |
217 | 217 | | |
218 | | - | |
| 218 | + | |
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| |||
0 commit comments