Skip to content

Commit

Permalink
ci: make sort use utf8 on every machine
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed Dec 28, 2022
1 parent 8217ad8 commit b650624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/update_contributors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ projectId="316051"
-H "Authorization: token $GITHUB_TOKEN" |
jq -r '.[]|("[" + .login + "](" + .html_url + ")")' |
sed -e '/semantic-release-bot/d' |
sort -f |
LC_ALL=en_US.UTF-8 sort -f |
sed -e 's/^/* /'

echo -e "\nThey helped [localize the app](https://poeditor.com/join/project/8AOEZ0eAZE):\n"
Expand All @@ -28,6 +28,6 @@ projectId="316051"
-d id="$projectId" |
jq -r '.result.contributors[].name'
) |
sort -f |
LC_ALL=en_US.UTF-8 sort -f |
sed -e 's/^/* /'
) >docs/Contributors.md

0 comments on commit b650624

Please sign in to comment.