diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-10-06 14:21:08 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-10-06 14:21:08 +0530 |
commit | e7bb122b22a5fb64263daf3ce2dea2a8f1a14a97 (patch) | |
tree | 12a935c091140429a516aa0526268e60deedaef8 | |
parent | fd774fcb43cd15138eb23127de1d5461cae61689 (diff) | |
download | meson-e7bb122b22a5fb64263daf3ce2dea2a8f1a14a97.zip meson-e7bb122b22a5fb64263daf3ce2dea2a8f1a14a97.tar.gz meson-e7bb122b22a5fb64263daf3ce2dea2a8f1a14a97.tar.bz2 |
appveyor: Attempt to fix MSYS/MinGW setup failure
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index d150c42..5dae571 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -85,7 +85,7 @@ install: - cmd: if %compiler%==cygwin ( %WRAPPER% which %PYTHON% ) else ( where %PYTHON% ) # Install additional packages needed for specific builds. - - ps: If($Env:compiler -eq 'msys2-mingw') {(new-object Net.WebClient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:\projects\meson\get-pip.py')} + - ps: If($Env:compiler -eq 'msys2-mingw') {(new-object Net.WebClient).DownloadFile('http://bootstrap.pypa.io/get-pip.py', 'C:\projects\meson\get-pip.py')} - cmd: if %compiler%==msys2-mingw ( %PYTHON% "C:\projects\meson\get-pip.py" ) - cmd: if %compiler%==cygwin ( call ci\appveyor-install.bat ) - ps: | |