Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build: Use LC_ALL='C' when sorting.
  • Loading branch information
scottgonzalez committed Oct 25, 2010
1 parent 5c67ed2 commit 2d70587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/release/prepare-release
Expand Up @@ -80,7 +80,7 @@ git whatchanged $version... --pretty=format:"$format_full" \
| sed '/^:/ d' \
| sed '/^$/ d' \
| sed 's/\(Fixe[sd] #\)\([0-9][0-9]*\)\(.*\)\(XXXX #XXXX\)/Fixed #\2\3\2 #\2/' \
| sort -f \
| LC_ALL='C' sort -f \
>> $base_dir/changelog

# find all fixed tickets
Expand Down Expand Up @@ -118,7 +118,7 @@ $remote_cmd/generate-contributors >> $base_dir/thankyou

# sort names
echo "Sorting contributors..."
sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou
LC_ALL='C' sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou
mv $base_dir/_thankyou $base_dir/thankyou

# find all people that were thanked
Expand Down

0 comments on commit 2d70587

Please sign in to comment.