fix error when locale not exists

This commit is contained in:
xiongdian.me 2022-12-04 17:45:28 +08:00
parent 63c3d8e6d1
commit f15e0836e3

View File

@ -1,6 +1,6 @@
# env for shell
export TERM="xterm-256color"
if ( locale -a | grep -qxE "C.UTF-8|C.utf8" ); then
if (command -v locale >/dev/null) && ( locale -a | grep -qxE "C.UTF-8|C.utf8" ); then
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
else