Skip to content
Snippets Groups Projects
Commit 7c137c34 authored by Dave Reisner's avatar Dave Reisner
Browse files

quote expansions of HOME (FS#43033)

parent 8bf318ec
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment