1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

This fixes the warning about setting LC_ALL on Ubuntu server

This commit is contained in:
downtownallday 2020-06-14 18:02:27 -04:00
parent bce1cd41ff
commit 41188ad42c

View File

@ -16,7 +16,8 @@ source setup/preflight.sh
if ! locale -a | grep en_US.utf8 > /dev/null; then
# Generate locale if not exists
hide_output locale-gen en_US.UTF-8
hide_output localedef -f UTF-8 -i en_US en_US.UTF-8
#hide_output locale-gen en_US.UTF-8
fi
export LANGUAGE=en_US.UTF-8