Skip to content

Commit b550f69

Browse files
committed
appveyor: PHP is downloaded using cURL
"03/mar/2018: We've upgraded the server bandwidth. This is however still not sufficient to handle all empty user agent connections. Please update the user agent in your scripts accordingly or contact us so we can discuss it."
1 parent 3ea6fcd commit b550f69

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ install:
1414
# Install PHP
1515
- IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php)
1616
- IF %PHP%==1 cd c:\php
17-
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-7.1.0-Win32-VC14-x64.zip
18-
- IF %PHP%==1 7z x php-7.1.0-Win32-VC14-x64.zip >nul
17+
- IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-7.1.0-Win32-VC14-x64.zip --output php.zip
18+
- IF %PHP%==1 7z x php.zip >nul
1919
- IF %PHP%==1 echo extension_dir=ext >> php.ini
2020
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
2121
- IF %PHP%==1 del /Q *.zip

0 commit comments

Comments
 (0)