Use `en_US.UTF-8` as default value for LC_ALL and LANG.

master
Icedream 2018-07-18 00:43:32 +02:00
parent 809797d3a7
commit bb96653bee
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 2 additions and 4 deletions

View File

@ -56,12 +56,10 @@ if [ -d "$HOME/Library/Python/2.7" ]; then
export PATH export PATH
fi fi
if [ -z "$LC_ALL" ]; then if [ -z "$LC_ALL" ]; then
source <(locale | grep '^LC_ALL=') export LC_ALL=en_US.UTF-8
export LC_ALL
fi fi
if [ -z "$LANG" ]; then if [ -z "$LANG" ]; then
source <(locale | grep '^LANG=') export LANG=en_US.UTF-8
export LANG
fi fi
section_end section_end