From af2539b0dafb3c3221a71bfb81c56831a7de9679 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Sun, 9 Jul 2023 00:02:10 +0200
Subject: [PATCH] Fix typo

---
 profiles/DerGeret/Windows/Setup.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/DerGeret/Windows/Setup.ps1 b/profiles/DerGeret/Windows/Setup.ps1
index da2b980c..4f85ae26 100644
--- a/profiles/DerGeret/Windows/Setup.ps1
+++ b/profiles/DerGeret/Windows/Setup.ps1
@@ -52,7 +52,7 @@ $Global:SetupConfigPostprocessor = {
     $null = $partitionCreationContainer.AppendChild($newPartition);
 
     $partitionModificationContainer = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace);
-    $partitionModifications = $partitionModificationContainer.SelectNodes("./ModifyPartition", $namespace);
+    $partitionModifications = $partitionModificationContainer.SelectNodes("./ua:ModifyPartition", $namespace);
     $newModification = $partitionModifications[1].CloneNode($true);
     $newModification.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex";
     $newModification.SelectSingleNode("./ua:PartitionID", $namespace).InnerText = "$newIndex";