Declare InstallerAction
in a separate file
This commit is contained in:
parent
5f8b5252ef
commit
34108f78d8
|
@ -1,12 +1,8 @@
|
||||||
. "$PSScriptRoot/Config.ps1";
|
. "$PSScriptRoot/Config.ps1";
|
||||||
|
. "$PSScriptRoot/../Types/InstallerAction.ps1";
|
||||||
enum InstallerAction {
|
|
||||||
Install
|
|
||||||
Configure
|
|
||||||
ConfigureUser
|
|
||||||
}
|
|
||||||
|
|
||||||
$null = New-Module {
|
$null = New-Module {
|
||||||
|
. "$PSScriptRoot/../Types/InstallerAction.ps1";
|
||||||
$userArgument = "name";
|
$userArgument = "name";
|
||||||
|
|
||||||
<#
|
<#
|
||||||
|
|
5
scripts/Windows/Types/InstallerAction.ps1
Normal file
5
scripts/Windows/Types/InstallerAction.ps1
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
enum InstallerAction {
|
||||||
|
Install
|
||||||
|
Configure
|
||||||
|
ConfigureUser
|
||||||
|
}
|
Loading…
Reference in a new issue