Use LC_ALL=C when calling sort

This commit is contained in:
Eric Paris 2016-03-10 14:06:49 -05:00
parent 31903c8bb1
commit c8d3a06223

View File

@ -184,7 +184,7 @@ cat ${KUBE_ROOT}/LICENSE
# Loop through every package in Godeps.json
for PACKAGE in $(cat Godeps/Godeps.json |\
jq -r ".Deps[].ImportPath" |sort -f); do
jq -r ".Deps[].ImportPath" | LC_ALL=C sort -f); do
process_content ${PACKAGE} LICENSE
process_content ${PACKAGE} COPYRIGHT