Fix non-functioning statement

This commit is contained in:
Manuel Thalmann 2023-07-08 23:35:58 +02:00
parent 1044862290
commit 3eba9696d6

View file

@ -14,7 +14,7 @@ $Global:SetupConfigPostprocessor = {
$newIndex = 2;
$installationPartition.InnerText = "$($newIndex + 1)";
$partitionCreations = $diskConfig.SelectSingleNode("./ua:CreatePartitions", $namespace);
$winPartition = ($partitionCreations.SelectNodes("./ua:CreatePartition", $namespace) | Select-Object -Last 1)[0];
$winPartition = ($partitionCreations.SelectNodes("./ua:CreatePartition", $namespace) | Select-Object -Last 1);
$newPartition = $winPartition.CloneNode($true);
$offset = 0;