Skip to content

Commit b3b80ae

Browse files
author
Matt Mason
committed
Fix appveyor parsing issue
1 parent 9c2dc01 commit b3b80ae

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

appveyor.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ max_jobs: 1
1212
image: Visual Studio 2017
1313
clone_folder: c:\projects\azure-webjobs-sdk-script
1414
init:
15-
- ps: >-
16-
$env:Path="c:\tools\php;c:\python35;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0;"+$env:Path
15+
- ps: $env:Path = "c:\tools\php;c:\python35;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0;" + $env:Path;
1716
install:
1817
- ps: >-
19-
mkdir c:\tools\php | out-null
20-
Invoke-WebRequest https://azfunc.blob.core.windows.net/public/php-7.1.3-Win32-VC14-x86.zip -OutFile c:\tools\php\php.zip
21-
Add-Type -AssemblyName System.IO.Compression.FileSystem
22-
[System.IO.Compression.ZipFile]::ExtractToDirectory("c:\tools\php\php.zip", "c:\tools\php")
23-
Install-Product node 6.11.2 x86
18+
mkdir c:\tools\php | out-null
19+
20+
Invoke-WebRequest https://azfunc.blob.core.windows.net/public/php-7.1.3-Win32-VC14-x86.zip -OutFile c:\tools\php\php.zip
21+
22+
Add-Type -AssemblyName System.IO.Compression.FileSystem
23+
24+
[System.IO.Compression.ZipFile]::ExtractToDirectory("c:\tools\php\php.zip", "c:\tools\php")
25+
26+
Install-Product node 6.11.2 x86
2427
build_script:
2528
- cmd: msbuild "WebJobs.Script.proj" /target:EnableSkipStrongNames;PackageScriptHost;PackageWebHost;TestBuild /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /property:Buildnumber=%APPVEYOR_BUILD_NUMBER%;Configuration=Release
2629
test_script:

0 commit comments

Comments
 (0)