Fix invalid syntax
This commit is contained in:
parent
29d74b3a27
commit
77d779be02
1 changed files with 2 additions and 2 deletions
|
@ -6,10 +6,10 @@ function Install-PersonalUsers([Context] $context) {
|
|||
$userIDProperty = "User";
|
||||
|
||||
$null = New-Module {
|
||||
Get-UserID {
|
||||
function Get-UserID {
|
||||
return $context.Get($userIDProperty);
|
||||
}
|
||||
Set-UserID {
|
||||
function Set-UserID {
|
||||
param([int]$value);
|
||||
$context.Set($userIDProperty, $value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue