mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-03 15:58:23 +02: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")
|
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';
|
$verbosity='minimal';
|
||||||
|
|
||||||
$process = Start-Process -PassThru -nnw -Wait -FilePath "$env:poco_base\buildwin.cmd" -RSO cout -RSE cerr `
|
$process = Start-Process -PassThru -nnw -Wait -FilePath "$env:poco_base\buildwin.cmd" -RSO cout -RSE cerr `
|
||||||
|
Loading…
x
Reference in New Issue
Block a user