diff --git a/scripts/Common/Scripts/Config.ps1 b/scripts/Common/Scripts/Config.ps1 index 806a47ce..6a1fdc1b 100644 --- a/scripts/Common/Scripts/Config.ps1 +++ b/scripts/Common/Scripts/Config.ps1 @@ -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``"; }