Fix incorrect order of commands
This commit is contained in:
parent
6f7a44ed23
commit
33f106679e
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,5 @@
|
|||
$env:WIN_COMPUTER_NAME = "DerGeret";
|
||||
$env:SETUP_SCRIPT_NAME = [System.IO.Path]::GetRelativePath("$PSScriptRoot/../../..", "$PSScriptRoot/Restore.ps1");
|
||||
. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";
|
||||
|
||||
$Global:SetupConfigPostprocessor = {
|
||||
param([xml] $config, [System.Xml.XmlNamespaceManager] $namespace)
|
||||
|
@ -47,3 +46,5 @@ $Global:SetupConfigPostprocessor = {
|
|||
|
||||
$partitionModifications.AppendChild($newModification);
|
||||
}
|
||||
|
||||
. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";
|
||||
|
|
Loading…
Reference in a new issue