From a373639a6ab09da4e5f70a409cf5e0d57f4e4bfe Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Mon, 9 Sep 2024 01:19:49 -0400 Subject: [PATCH] update winetricks check messages --- lug-helper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 29b7fe9..7b69a90 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -949,18 +949,18 @@ winetricks_check() { if [ "$winetricks_required" != "$winetricks_current" ] && [ "$winetricks_current" = "$(printf "%s\n%s" "$winetricks_current" "$winetricks_required" | sort -V | head -n1)" ]; then # Winetricks is out of date - preflight_fail+=("Winetricks is out of date.\nVersion $winetricks_required or newer is required.") + preflight_fail+=("Winetricks is out of date.\nVersion $winetricks_required or newer is required.\nIf installing the game through Lutris, this can be ignored.\nCheck that Use System Winetricks is disabled in Lutris Runner Options.") # Add the function that will be called to update winetricks preflight_action_funcs+=("winetricks_update") # Add info for manually running the update - preflight_manual+=("To manually update winetricks, run 'winetricks --self-update'") + preflight_manual+=("To manually update winetricks, run 'sudo winetricks --self-update'") else # Winetricks meets the minimum required version preflight_pass+=("Winetricks is installed and sufficiently up to date.") fi else # Winetricks is not installed - preflight_fail+=("Winetricks does not appear to be installed.\nVersion $winetricks_required or newer is required.") + preflight_fail+=("Winetricks does not appear to be installed.\nVersion $winetricks_required or newer is required.\nIf installing the game through Lutris, this can be ignored.\nCheck that Use System Winetricks is disabled in Lutris Runner Options.") fi }