Commit 8b2ecf4a authored by Jeff Grafton's avatar Jeff Grafton

Use LC_ALL=C with the other sort call in update-godep-licenses.sh

Also update LICENSES based on this ordering.
parent 353c3827
...@@ -116,7 +116,7 @@ process_content () { ...@@ -116,7 +116,7 @@ process_content () {
-maxdepth ${find_maxdepth} -type f "${find_names[@]}")) -maxdepth ${find_maxdepth} -type f "${find_names[@]}"))
done done
# Uniquely sort the array # Uniquely sort the array
IFS=$'\n' local_files=($(sort -u <<<"${local_files[*]-}")) IFS=$'\n' local_files=($(LC_ALL=C sort -u <<<"${local_files[*]-}"))
unset IFS unset IFS
for f in ${local_files[@]-}; do for f in ${local_files[@]-}; do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment