summarylogtreecommitdiffstats
path: root/evewinetricks
diff options
context:
space:
mode:
Diffstat (limited to 'evewinetricks')
-rw-r--r--evewinetricks4
1 files changed, 2 insertions, 2 deletions
diff --git a/evewinetricks b/evewinetricks
index 6a6141e67b08..1d41763be081 100644
--- a/evewinetricks
+++ b/evewinetricks
@@ -4,7 +4,7 @@ EVECONF=$HOME/.config/CCP/EVE.conf
UCW=$(grep UseCustomWine $EVECONF | cut -d= -f2)
if [ "x$UCW" = "xtrue" ] ;then
CUSTOMWP=$(grep CustomWinePath $EVECONF | cut -d= -f2)
- WINEPATH=${CUSTOMWP%/*}
+ WINEPATH="${CUSTOMWP%/*}"
SHAREDIR=$(grep SharedCacheFolder $EVECONF | cut -d= -f2)
WINEPREFIX=${SHAREDIR}wineenv
else
@@ -17,4 +17,4 @@ if [ ! -x "$WINEPATH/wine" ] ;then
fi
env WINEPREFIX=$WINEPREFIX \
- WINE=$WINEPATH/wine $(which winetricks) "$@"
+ WINE="$WINEPATH/wine" $(which winetricks) "$@"