We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c67ed2 commit 2d70587Copy full SHA for 2d70587
build/release/prepare-release
@@ -80,7 +80,7 @@ git whatchanged $version... --pretty=format:"$format_full" \
80
| sed '/^:/ d' \
81
| sed '/^$/ d' \
82
| sed 's/\(Fixe[sd] #\)\([0-9][0-9]*\)\(.*\)\(XXXX #XXXX\)/Fixed #\2\3\2 #\2/' \
83
-| sort -f \
+| LC_ALL='C' sort -f \
84
>> $base_dir/changelog
85
86
# find all fixed tickets
@@ -118,7 +118,7 @@ $remote_cmd/generate-contributors >> $base_dir/thankyou
118
119
# sort names
120
echo "Sorting contributors..."
121
-sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou
+LC_ALL='C' sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou
122
mv $base_dir/_thankyou $base_dir/thankyou
123
124
# find all people that were thanked
0 commit comments