From 14230fd35061f7e8122bc89503430691c9d21a6d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 11 May 2016 00:32:04 +0000 Subject: [PATCH] Delete mingw bins on appveyor --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 154087f3be..687475bf40 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,6 +24,8 @@ install: # For -gnu builds if ($env:TARGET -match "-gnu$") { $env:PATH="$env:PATH;C:\msys64\mingw${env:BITS}\bin" + # Remove the mingw gcc to keep it from interfering with the build + Remove-Item -Recurse -Force "C:\rust\lib\rustlib\$env:TARGET\bin\" } # Print version info