From 83232620d0386e20b34e00c91e7d4042a37e4c4d Mon Sep 17 00:00:00 2001 From: RealJohnGalt Date: Sat, 15 Dec 2018 10:14:53 -0800 Subject: [PATCH] fix winetricks check --- cemutil.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cemutil.sh b/cemutil.sh index 08a3258..18dbecd 100755 --- a/cemutil.sh +++ b/cemutil.sh @@ -136,7 +136,7 @@ export WINEPREFIX="$(realpath $instdir)/wine" #for cemuhook export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b" -if [ -z `winetricks list-installed|grep vcrun2015` ]; then +if [ -z "`winetricks list-installed|grep vcrun2015`" ]; then if [ -n "`whereis zenity|grep bin`" ]; then zenity --info --title 'Cemu' --text 'Installing wine dependencies.\n\nThe process may take a few minutes' fi @@ -154,7 +154,7 @@ export WINEPREFIX="$(realpath $instdir)/wine" #for cemuhook export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b" -if [ -z `winetricks list-installed|grep vcrun2015` ]; then +if [ -z "`winetricks list-installed|grep vcrun2015`" ]; then if [ -n "`whereis zenity|grep bin`" ]; then zenity --info --title 'Cemu' --text 'Installing wine dependencies.\n\nThe process may take a few minutes' fi