mirror of
https://github.com/curl/curl.git
synced 2026-01-27 01:44:17 +00:00
contrithanks: fix for BSD sed tool
Fixing on macOS, and possibly other BSDs: ``` sed: 83: ./docs/THANKS-filter: RE error: illegal byte sequence ``` Where line 83 contains `\xED`. Switch to raw encoding to avoid `sed` evaluating the stream of bytes. Ref: #18061 Closes #18062
This commit is contained in:
parent
b1df1d38af
commit
577ec09412
@ -79,7 +79,7 @@ tail -n +7 ./docs/THANKS | sed 's/ github/ github/i' > $rand
|
||||
sed 's/, */\n/g'| \
|
||||
sed 's/^ *//'
|
||||
} | \
|
||||
sed -f ./docs/THANKS-filter | \
|
||||
LC_ALL=C sed -f ./docs/THANKS-filter | \
|
||||
sort -fu | \
|
||||
grep -aixvFf ./docs/THANKS >> $rand
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user