Prevent error when $HOME contains spaces

Fixes #39.
This commit is contained in:
Jason Yundt 2021-03-28 11:43:29 -04:00
parent d660dfc20d
commit 79476e8732

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