From a0e5811dc4cf8fc62474d85330169e08f2667b22 Mon Sep 17 00:00:00 2001 From: Austin English Date: Fri, 5 Jan 2024 06:22:07 -0500 Subject: [PATCH] winetricks_wine_setup: warn for Wine versions < 8.0 A bit late, considering 9.0 is imminent, but better late than never.. --- src/winetricks | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/winetricks b/src/winetricks index dec51810f..03f3c9d6a 100755 --- a/src/winetricks +++ b/src/winetricks @@ -5495,10 +5495,10 @@ winetricks_wine_setup() # wine-2.8 _wine_version_stripped="$(echo "${WINETRICKS_WINE_VERSION}" | cut -d ' ' -f1 | sed -e 's/wine-//' -e 's/-rc.*//')" - # If WINE is < 7.0, warn user: - # 7.0 doesn't do what I thought it would - if w_wine_version_in ,6.99 ; then - w_warn "Your version of wine ${_wine_version_stripped} is no longer supported upstream. You should upgrade to 7.x" + # If WINE is < 8.0, warn user: + # 8.0 doesn't do what I thought it would + if w_wine_version_in ,7.99 ; then + w_warn "Your version of wine ${_wine_version_stripped} is no longer supported upstream. You should upgrade to 8.x" fi winetricks_set_wineprefix "$1"