Report unexpected path conversions

This commit is contained in:
Manuel Thalmann 2024-08-19 02:50:41 +02:00
parent 4f89c167cb
commit 8e3abf6087

View file

@ -39,6 +39,10 @@ $null = New-Module {
$result = Receive-Job -Wait $job;
if ((Split-Path -Leaf $Path) -ne (Split-Path -Leaf $result)) {
Write-Error "The result of the path conversion of ``$Path`` was unexpacted: ``$result``";
}
if ($job.State -ne ([System.Management.Automation.JobState]::Completed)) {
Write-Error "An error occurred while converting ``$Path`` to a Linux path.`nOutput: ``$result``";
}