From f01ea3dbd8ca0f1d955c76083cee34744ffa424b Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Sat, 6 Jan 2018 12:33:16 +0100 Subject: [PATCH] Next Appveyor attempt --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index e47f8aee..ec56b702 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,13 +24,13 @@ install: - rustup-init -yv --default-toolchain %channel% --default-host %target% - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - ps: | - if ($env:target -contains "gnu" -And $env:PLATFORM -eq "x64") { + if ($env:target -like "*-gnu" -And $env:PLATFORM -eq "x64") { Start-FileDownload "http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/5.1.0/threads-win32/seh/x86_64-5.1.0-release-win32-seh-rt_v4-rev0.7z/download" -FileName mingw64.7z 7z x -oC:\ mingw64.7z > $null $env:path = "C:\mingw64\bin;" + $env:path gcc --version } - elseif ($env:target -contains "gnu") { + elseif ($env:target -like "*-gnu") { $env:path = "C:\mingw\bin;" + $env:path gcc --version }