Add more logging

This commit is contained in:
Daniel Donenfeld 2019-02-14 15:01:31 -08:00
parent ea64dc5e45
commit 49f62dc336

View File

@ -59,7 +59,7 @@ function appveyorFinished {
switch ($job.status) { switch ($job.status) {
"failed" { throw "AppVeyor's Job ($($job.jobId)) failed." } "failed" { throw "AppVeyor's Job ($($job.jobId)) failed." }
"success" { continue } "success" { continue }
Default { $allSuccess = $false } Default { Write-Host "Job status: $($job.status)"; Write-Host $job ;$allSuccess = $false }
} }
} ` } `
-End { if ($allSuccess) { return $true } } -End { if ($allSuccess) { return $true } }