From 97724fd0cdda262741e7d166837535e49d0eb0be Mon Sep 17 00:00:00 2001 From: Katy248 Date: Wed, 16 Oct 2024 15:17:13 +0300 Subject: [PATCH] Removed os specific wonetricks args --- install.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/install.sh b/install.sh index 6a4705b..e3926e7 100755 --- a/install.sh +++ b/install.sh @@ -224,17 +224,7 @@ setup_wine() { print_log "Executing winetricks." print_log "Downloading and installing core components for wine prefix. This could take some time." - local winetricks_args - case "${OS_ID}" in - redos) - winetricks_args=(corefonts win10 vkd3d msxml3 msxml6 gdiplus) - ;; - *) - winetricks_args=(corefonts win10 vkd3d dxvk2030 msxml3 msxml6 gdiplus) - ;; - esac - - if ! winetricks --unattended "${winetricks_args[@]}" &>./install_log.log; then + if ! winetricks --unattended corefonts win10 vkd3d dxvk2030 msxml3 msxml6 gdiplus &>./install_log.log; then print_error "Winetricks terminated with an error." print_error "Please open an issue by mentioning the contents of ${YELLOW}./install_log.log${RESET}." exit 1