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";
|
$userIDProperty = "User";
|
||||||
|
|
||||||
$null = New-Module {
|
$null = New-Module {
|
||||||
Get-UserID {
|
function Get-UserID {
|
||||||
return $context.Get($userIDProperty);
|
return $context.Get($userIDProperty);
|
||||||
}
|
}
|
||||||
Set-UserID {
|
function Set-UserID {
|
||||||
param([int]$value);
|
param([int]$value);
|
||||||
$context.Set($userIDProperty, $value);
|
$context.Set($userIDProperty, $value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue