Fix infinite loop

This commit is contained in:
Manuel Thalmann 2024-08-22 20:41:17 +02:00
parent 834aaa2d5b
commit 2afc7a0c69

View file

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