From bdab30bd505da9fe25b9843f9d0bdd87ca6e2266 Mon Sep 17 00:00:00 2001 From: gOOvER Date: Wed, 28 Aug 2024 07:47:35 +0200 Subject: [PATCH] next gitkraken test --- games/conan/entrypoint.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/games/conan/entrypoint.sh b/games/conan/entrypoint.sh index aa4b60c..0ecfbf1 100644 --- a/games/conan/entrypoint.sh +++ b/games/conan/entrypoint.sh @@ -133,25 +133,6 @@ echo -e "${YELLOW}First launch will throw some errors. Ignore them${NC}" echo -e "${BLUE}---------------------------------------------------${NC}" mkdir -p $WINEPREFIX -# Check if wine-gecko required and install it if so -if [[ $WINETRICKS_RUN =~ gecko ]]; then - echo -e "${BLUE}---------------------------------------------------------------------${NC}" - echo -e "${YELLOW}Installing Wine Gecko${NC}" - echo -e "${BLUE}---------------------------------------------------------------------${NC}" - WINETRICKS_RUN=${WINETRICKS_RUN/gecko} - - if [ ! -f "$WINEPREFIX/gecko_x86.msi" ]; then - wget -q -O $WINEPREFIX/gecko_x86.msi http://dl.winehq.org/wine/wine-gecko/2.47.4/wine_gecko-2.47.4-x86.msi - fi - - if [ ! -f "$WINEPREFIX/gecko_x86_64.msi" ]; then - wget -q -O $WINEPREFIX/gecko_x86_64.msi http://dl.winehq.org/wine/wine-gecko/2.47.4/wine_gecko-2.47.4-x86_64.msi - fi - - wine msiexec /i $WINEPREFIX/gecko_x86.msi /qn /quiet /norestart /log $WINEPREFIX/gecko_x86_install.log - wine msiexec /i $WINEPREFIX/gecko_x86_64.msi /qn /quiet /norestart /log $WINEPREFIX/gecko_x86_64_install.log -fi - # Check if wine-mono required and install it if so if [[ $WINETRICKS_RUN =~ mono ]]; then echo -e "${BLUE}---------------------------------------------------------------------${NC}"