Fix infinite loop

This commit is contained in:
Manuel Thalmann 2024-08-22 20:41:17 +02:00
parent e4bb3c9968
commit bce690f731

View file

@ -604,6 +604,8 @@ $null = New-Module {
foreach ($group in Get-UserConfig "groups") {
Add-LocalGroupMember -Member "$name" -Name "$group";
}
Set-UserStage ([UserStage]::Completed);
}
}
}