From 284fc1a1b27155e888734bbc499afe125d41ebcf Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Tue, 3 Sep 2024 10:58:48 -0400 Subject: [PATCH] Update powershell install message --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 33aa719..4f5acea 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -2460,11 +2460,11 @@ install_game_wine() { # Install powershell verb into the game's wine prefix install_powershell() { - if message question "This will install PowerShell into your game's wine prefix.\nNote that this is done automatically for new game installs.\n\nDo you want to continue?"; then + if message question "Run the Preflight Check to update winetricks before proceeding!\n\nDo you want to continue?"; then getdirs debug_print continue "Launching winetricks to install PowerShell into ${wine_prefix}..." WINEPREFIX="$wine_prefix" winetricks powershell - message info "PowerShell install complete" + message info "PowerShell operation complete. See terminal output for details.\n\nIf nothing happened, your winetricks is out of date." fi }