Skip to content

Commit d1dc387

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

appveyor.yml

Lines changed: 5 additions & 5 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"
@@ -50,7 +50,7 @@ build_script:
5050
}
5151
- call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
5252
- echo Building PHP [%PHP_VERSION%]
53-
- '%PHP_SDK%\bin\phpsdk_setvars'
53+
- "%PHP_SDK%\bin\phpsdk_setvars"
5454
- buildconf
5555
- configure --disable-all --enable-cli --with-v8js %CONFIGURE_EXTRA%
5656
- nmake
@@ -71,7 +71,7 @@ on_finish:
7171
- cd c:\projects\php-sdk\v8js-ci\vc14\%Platform%\php-%PHP_VERSION%
7272
- ps: |
7373
# upload results to AppVeyor
74-
$wc = New-Object 'System.Net.WebClient'
74+
$wc = New-Object "System.Net.WebClient"
7575
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\junit.xml))
7676
7777
deploy:

0 commit comments

Comments
 (0)