diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-10-25 11:31:37 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-10-25 11:31:37 -0400 |
commit | 2d705873e9d575217762224c1c82ffb4c15d50dc (patch) | |
tree | 649d2f15945247df414460aad272e1a255749493 /build | |
parent | 5c67ed26e8c36c42c9f149fcfb2f5fe9e1192b26 (diff) | |
download | jquery-ui-2d705873e9d575217762224c1c82ffb4c15d50dc.tar.gz jquery-ui-2d705873e9d575217762224c1c82ffb4c15d50dc.zip |
Build: Use LC_ALL='C' when sorting.
Diffstat (limited to 'build')
-rwxr-xr-x | build/release/prepare-release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/release/prepare-release b/build/release/prepare-release index 1b1675ac4..0b41a5b60 100755 --- a/build/release/prepare-release +++ b/build/release/prepare-release @@ -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 @@ -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 |