From 0a829ab22fd37717a9db4ffbe52ee19276d120a1 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:43:34 -0400 Subject: [PATCH] Fix env var --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 97f4550..724281a 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -2364,7 +2364,7 @@ install_game_lutris() { # Install the game without Lutris install_game_wine() { - if message question "Before proceeding, be sure all Preflight Checks have passed!\n\nAre you ready to continue?"; then + if message question "Before proceeding, be sure all Preflight Checks have passed!\n\nRefer to our Quick Start Guide for prerequisites:\n$lug_wiki\n\nAre you ready to continue?"; then # Double check that wine is installed if [ ! -x "$(command -v wine)" ]; then message error "Wine does not appear to be installed.\nPlease refer to our Quick Start Guide:\n$lug_wiki" @@ -2425,7 +2425,7 @@ install_game_wine() { fi # Run the installer - WINEPREFIX="$install_dir" winecfg -v win10 && wine "$tmp_dir/$rsi_installer" + WINEPREFIX="$install_dir" winecfg -v win10 && WINEPREFIX="$install_dir" wine "$tmp_dir/$rsi_installer" fi }