Fix handling empty error messages

This commit is contained in:
Manuel Thalmann 2024-08-22 20:12:18 +02:00
parent 1c28bccd37
commit 36acd779ef

View file

@ -141,9 +141,12 @@ $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;
if ($errorMessage) {
Write-Error $errorMessage; Write-Error $errorMessage;
} }
} }
}
# ToDo: Store Run-OneShot and Receive-OneShot somewhere else in Windows folder # ToDo: Store Run-OneShot and Receive-OneShot somewhere else in Windows folder