mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-16 11:48:54 +01:00
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:
parent
19f753f1c5
commit
9cb7979dc9
@ -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 `
|
||||
|
Loading…
Reference in New Issue
Block a user