From 447344bec93c82455de48591ce29d33693afa698 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 16 Jan 2025 13:30:40 -0500 Subject: [PATCH] Fixed an error with finding wine_gecko. --- audiogame-manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index 961a3fe..702da80 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -706,7 +706,7 @@ install_wine_bottle() { # Arguments to the function are dependancies to be installed. # Get location of mono and gecko. monoPath="$(find /usr/share/wine/ -maxdepth 1 -type d -name mono 2> /dev/null)" - geckoPath="$(find /usr/share/wine/ -maxdepth 1 -type d "gecko" 2> /dev/null)" + geckoPath="$(find /usr/share/wine/ -maxdepth 1 -type d -name "gecko" 2> /dev/null)" if [[ -z "$monoPath" ]]; then download 'http://dl.winehq.org/wine/wine-mono/6.0.0/wine-mono-6.0.0-x86.msi' monoPath="${cache}/wine-mono-6.0.0-x86.msi"