Fix syntax error

This commit is contained in:
Manuel Thalmann 2024-08-01 12:31:25 +02:00
parent 5ff8639898
commit 8ad65912be

View file

@ -23,12 +23,12 @@ function Update-WindowsInstallation {
Write-Information "A Reboot is Required!"; Write-Information "A Reboot is Required!";
Write-Information "Windows will reboot now and the installation will be continued automatically."; Write-Information "Windows will reboot now and the installation will be continued automatically.";
return; return;
}
} else { } else {
Write-Information "Upgrading Windows finished successfully!"; Write-Information "Upgrading Windows finished successfully!";
return; return;
} }
} }
}
Start-UpdateLoop; Start-UpdateLoop;
} }