Normalize script formatting

This commit is contained in:
Manuel Thalmann 2024-07-31 15:52:23 +02:00
parent add008c791
commit 3f6700b98e

View file

@ -11,7 +11,7 @@ $null = New-Module {
.SYNOPSIS .SYNOPSIS
Gets the registry key containing options related to the setup. Gets the registry key containing options related to the setup.
#> #>
function Get-SetupConfigKey() { function Get-SetupConfigKey {
if (-not (Test-Path $configRoot)) { if (-not (Test-Path $configRoot)) {
$key = New-Item $configRoot; $key = New-Item $configRoot;
$acl = Get-Acl $configRoot; $acl = Get-Acl $configRoot;
@ -39,7 +39,7 @@ $null = New-Module {
.PARAMETER Name .PARAMETER Name
The name of the option value to get. The name of the option value to get.
#> #>
function Get-SetupOption() { function Get-SetupOption {
param( param(
[string] $Name [string] $Name
) )
@ -63,7 +63,7 @@ $null = New-Module {
.PARAMETER Value .PARAMETER Value
The value to set the option to. The value to set the option to.
#> #>
function Set-SetupOption() { function Set-SetupOption {
param( param(
[string] $Name, [string] $Name,
$Value $Value
@ -81,7 +81,7 @@ $null = New-Module {
.SYNOPSIS .SYNOPSIS
Gets the name of the current setup stage. Gets the name of the current setup stage.
#> #>
function Get-Stage() { function Get-Stage {
return Get-SetupOption $stageOption; return Get-SetupOption $stageOption;
} }
@ -92,7 +92,7 @@ $null = New-Module {
.PARAMETER Name .PARAMETER Name
The name to set the current stage to. The name to set the current stage to.
#> #>
function Set-Stage() { function Set-Stage {
param( param(
[string] $Name [string] $Name
) )