From f68a35c5608cc4f0be658fab6c1565c36d790c7d Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Sun, 8 Sep 2024 11:58:56 -0400 Subject: [PATCH] condense winetricks call --- lug-helper.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index b2de335..90b94a8 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -2507,10 +2507,8 @@ install_game_wine() { # Run the installer debug_print continue "Preparing the wine prefix..." WINEPREFIX="$install_dir" winecfg -v win11 2>"$tmp_install_log" && - debug_print continue "Installing dxvk..." - WINEPREFIX="$install_dir" winetricks dxvk 2>>"$tmp_install_log" - debug_print continue "Installing powershell..." - WINEPREFIX="$install_dir" winetricks powershell 2>>"$tmp_install_log" + debug_print continue "Installing dxvk and powershell..." + WINEPREFIX="$install_dir" winetricks dxvk powershell 2>>"$tmp_install_log" debug_print continue "Launching the RSI Installer..." WINEPREFIX="$install_dir" wine "$tmp_dir/$rsi_installer" 2>>"$tmp_install_log"