Commit 21fa682
fix: use portable ERE sed pattern for normalizing memory addresses in models.yaml
The previous BRE pattern used `\+` (GNU sed extension) which silently fails
on macOS BSD sed. Switch to `-E` (extended regex) with POSIX character class
`[^[:space:]]` instead of `\S` (also unsupported by BSD sed), making the
normalization work on both macOS and Linux.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent a2324fa commit 21fa682
2 files changed
+108
-107
lines changed
0 commit comments