8000 AppVeyor Debugging · PoshCode/PSGit@0b0cc4d · GitHub
[go: up one dir, main page]

Skip to content

Commit 0b0cc4d

Browse files
committed
AppVeyor Debugging
Try another way to figure out what's happening on AppVeyor.
1 parent 6213ea8 commit 0b0cc4d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/Status.Steps.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,10 @@ function global:ProcessGitActions($table) {
9898
# recursively add the exception types as tags
9999
do {
100100
Write-Host ("Exception: " + $Ex.GetType().Name) -ForegroundColor Yellow
101-
Write-Host $Ex
101+
$Ex | Format-List * -Force | Out-String | Out-Host
102102
$Ex = $Ex.InnerException
103103
} while ($Ex)
104+
throw $ErrorRecord
104105
}
105106
}
106107
}

0 commit comments

Comments
 (0)
0