diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-21 23:17:12 +0200 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-21 23:17:12 +0200 |
commit | 74e376e81174ee0476dfa6e1fcb018a9539d11fd (patch) | |
tree | 3ce2e45058fd879b2bd5c3f0567b5899b65405d4 | |
parent | f85c2439a83891f3b8f5f53552f731da7da5234b (diff) | |
download | jenkins.debian.net-74e376e81174ee0476dfa6e1fcb018a9539d11fd.tar.xz |
common: use LC_ALL=C.UTF-8 instead of C. We live in a bigger world to costrain us on ASCII
-rwxr-xr-x | bin/common-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index ddf542ce..3e081561 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -50,7 +50,7 @@ if [ "${0:0:5}" != "/tmp/" ] ; then else # default settings used for the jenkins.debian.net environment if [ -z "$LC_ALL" ]; then - export LC_ALL=C + export LC_ALL=C.UTF-8 fi if [ -z "$MIRROR" ]; then export MIRROR=http://ftp.de.debian.org/debian |