[macos ci] oops that was a dumb bug (#20448)

This commit is contained in:
nicole mazzuca 2021-09-30 19:52:23 -07:00 committed by GitHub
parent 7e5cfccf60
commit 4187499295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,9 +133,12 @@ if ($null -ne $OnlyTest)
$OnlyTest | % {
$portName = $_
& "./vcpkg$executableExtension" install --triplet $Triplet @commonArgs $portName
[System.Console]::Error.WriteLine( `
"REGRESSION: ${portName}:$triplet. If expected, remove ${portName} from the OnlyTest list." `
)
if (-not $?)
{
[System.Console]::Error.WriteLine( `
"REGRESSION: ${portName}:$triplet. If expected, remove ${portName} from the OnlyTest list." `
)
}
}
}
else