Declare InstallerAction
in a separate file
This commit is contained in:
parent
5f8b5252ef
commit
34108f78d8
|
@ -1,12 +1,8 @@
|
|||
. "$PSScriptRoot/Config.ps1";
|
||||
|
||||
enum InstallerAction {
|
||||
Install
|
||||
Configure
|
||||
ConfigureUser
|
||||
}
|
||||
. "$PSScriptRoot/../Types/InstallerAction.ps1";
|
||||
|
||||
$null = New-Module {
|
||||
. "$PSScriptRoot/../Types/InstallerAction.ps1";
|
||||
$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