Skip to content

Commit 4b5a98c

Browse files
committed
appveyor.yml: single quotes -> double quotes (curl fails otherwise)
1 parent 272e9ac commit 4b5a98c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ platform:
2020

2121
install:
2222
- cd %PHP_SDK%
23-
- curl -fSL -o php-sdk-binary-tools-20110915.zip 'http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip'
23+
- curl -fSL -o php-sdk-binary-tools-20110915.zip "http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip"
2424
- 7z.exe x php-sdk-binary-tools-20110915.zip
2525
- call bin\phpsdk_setvars.bat
2626
- call bin\phpsdk_buildtree.bat v8js-ci
2727
- cd v8js-ci\vc14\%Platform%
2828
- md deps
2929
- cd deps
30-
- curl -fSL -o %V8_ASSETS% 'https://s3.amazonaws.com/win-phpv8/%V8_ASSETS%'
30+
- curl -fSL -o %V8_ASSETS% "https://s3.amazonaws.com/win-phpv8/%V8_ASSETS%"
3131
- 7z.exe x %V8_ASSETS%
3232
- cd ..
33-
- curl -fSL -o 'php-%PHP_VERSION%.tar.gz' 'http://us1.php.net/distributions/php-%PHP_VERSION%.tar.gz'
33+
- curl -fSL -o "php-%PHP_VERSION%.tar.gz" "http://us1.php.net/distributions/php-%PHP_VERSION%.tar.gz"
3434
- ren php php-%PHP_VERSION%
3535
- 7z.exe x php-%PHP_VERSION%.tar.gz -y
3636
- 7z.exe x php-%PHP_VERSION%.tar -y | find /v "Extracting"

0 commit comments

Comments
 (0)