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:
Viktor Szakats 2025-07-28 14:45:57 +02:00
parent b1df1d38af
commit 577ec09412
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -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