From 6a5a8364091415cf482877ee5d718329151bda5c Mon Sep 17 00:00:00 2001 From: Hexagon12 Date: Tue, 24 Oct 2017 21:09:41 +0300 Subject: [PATCH] Updated the AppVeyor script with a stable SDL2 link. --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5524eb576..7ac59447e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,11 +28,11 @@ install: if ($env:BUILD_TYPE -eq 'mingw') { $dependencies = "mingw64/mingw-w64-x86_64-cmake", "mingw64/mingw-w64-x86_64-qt5", - "mingw64/mingw-w64-x86_64-curl", - "mingw64/mingw-w64-x86_64-SDL2" + "mingw64/mingw-w64-x86_64-curl" # redirect err to null to prevent warnings from becoming errors # workaround to prevent pacman from failing due to cyclical dependencies C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw64/mingw-w64-x86_64-freetype mingw64/mingw-w64-x86_64-fontconfig" 2> $null + C:\msys64\usr\bin\bash -lc "pacman --noconfirm -U http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-SDL2-2.0.5-2-any.pkg.tar.xz" 2> $null C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S $dependencies" 2> $null }