diff options
Diffstat (limited to 'libre/filesystem/locale.sh')
-rw-r--r-- | libre/filesystem/locale.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libre/filesystem/locale.sh b/libre/filesystem/locale.sh index b66587203..11b7dc9ec 100644 --- a/libre/filesystem/locale.sh +++ b/libre/filesystem/locale.sh @@ -3,7 +3,7 @@ if [ -z "$LANG" ]; then if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then . "$XDG_CONFIG_HOME/locale.conf" - elif [ -n $HOME ] && [ -r $HOME/.config/locale.conf ]; then + elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then . "$HOME/.config/locale.conf" elif [ -r /etc/locale.conf ]; then . /etc/locale.conf |