Fix handling empty error messages
This commit is contained in:
parent
3ee928c081
commit
e294564e92
1 changed files with 4 additions and 1 deletions
|
@ -141,7 +141,10 @@ $null = New-Module {
|
||||||
if (Test-Path $errorPath) {
|
if (Test-Path $errorPath) {
|
||||||
$errorMessage = Get-Content $errorPath;
|
$errorMessage = Get-Content $errorPath;
|
||||||
Remove-Item $errorPath;
|
Remove-Item $errorPath;
|
||||||
Write-Error $errorMessage;
|
|
||||||
|
if ($errorMessage) {
|
||||||
|
Write-Error $errorMessage;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue