From 4b5a98c0bfad459d603ca248086f9341c5ac1715 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Fri, 14 Apr 2017 19:38:04 +0200 Subject: [PATCH] appveyor.yml: single quotes -> double quotes (curl fails otherwise) --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4cebb43..a6f9db6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,17 +20,17 @@ platform: install: - cd %PHP_SDK% - - curl -fSL -o php-sdk-binary-tools-20110915.zip 'http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip' + - curl -fSL -o php-sdk-binary-tools-20110915.zip "http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip" - 7z.exe x php-sdk-binary-tools-20110915.zip - call bin\phpsdk_setvars.bat - call bin\phpsdk_buildtree.bat v8js-ci - cd v8js-ci\vc14\%Platform% - md deps - cd deps - - curl -fSL -o %V8_ASSETS% 'https://s3.amazonaws.com/win-phpv8/%V8_ASSETS%' + - curl -fSL -o %V8_ASSETS% "https://s3.amazonaws.com/win-phpv8/%V8_ASSETS%" - 7z.exe x %V8_ASSETS% - cd .. - - curl -fSL -o 'php-%PHP_VERSION%.tar.gz' 'http://us1.php.net/distributions/php-%PHP_VERSION%.tar.gz' + - curl -fSL -o "php-%PHP_VERSION%.tar.gz" "http://us1.php.net/distributions/php-%PHP_VERSION%.tar.gz" - ren php php-%PHP_VERSION% - 7z.exe x php-%PHP_VERSION%.tar.gz -y - 7z.exe x php-%PHP_VERSION%.tar -y | find /v "Extracting"