Merge pull request #64 from dylanaraps/locale_fix

Fix locale issues when the user didn't have 'en_US.UTF8' installed.
This commit is contained in:
Dylan Araps 2016-02-10 23:01:35 +11:00
commit 9bec0fef70
1 changed files with 2 additions and 1 deletions

3
fetch
View File

@ -21,6 +21,7 @@
# https://github.com/dylanaraps/
# Speed up script by not using unicode
SYS_LOCALE="$LANG"
export LC_ALL=C
export LANG=C
@ -1703,7 +1704,7 @@ getascii () {
fi
# Set locale to get correct padding
export LC_ALL="en_US.UTF8"
export LC_ALL="$SYS_LOCALE"
# Turn the file into a variable.
ascii_strip=$(<"$ascii")