From c8d3a062234b59d0e1fb295a6a21bec164912828 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Thu, 10 Mar 2016 14:06:49 -0500 Subject: [PATCH] Use LC_ALL=C when calling sort --- hack/update-godep-licenses.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/update-godep-licenses.sh b/hack/update-godep-licenses.sh index 85959f24bed..1fc3c2bd729 100755 --- a/hack/update-godep-licenses.sh +++ b/hack/update-godep-licenses.sh @@ -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