Merge branch 'spaces-in-home' into 'master'

Prevent error when $HOME contains spaces

Closes #39

See merge request librewolf-community/browser/windows!15
This commit is contained in:
Jason A. Yundt 2021-03-28 15:45:08 +00:00
commit 4fcc857c1f

View file

@ -409,7 +409,7 @@ if [ -f '/c/mozilla-build/start-shell.bat' ]; then
export PATH=$TPATH:$PATH
fi
if [ -f $HOME/.cargo/env ]; then
if [ -f "$HOME/.cargo/env" ]; then
. $HOME/.cargo/env
fi