Fix space issue with the msbuild's logger path

With 

```LOGGER='"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';```

```if (not "%LOGGER%"==""```

evaluate to

```Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll""=="" was unexpected at this time```
This commit is contained in:
zosrothko 2016-09-09 09:25:39 +02:00 committed by GitHub
parent 19f753f1c5
commit 9cb7979dc9

View File

@ -384,7 +384,7 @@ build_script:
}
if ($env:builder -eq "msbuild")
{
$logger='"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';
$logger='"C:\Progra~1\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';
$verbosity='minimal';
$process = Start-Process -PassThru -nnw -Wait -FilePath "$env:poco_base\buildwin.cmd" -RSO cout -RSE cerr `