Allow leaving install action unspecified

This commit is contained in:
Manuel Thalmann 2024-08-10 19:27:56 +02:00
parent 49a133e76a
commit 74fb20d6b1

View file

@ -176,7 +176,7 @@ $null = New-Module {
#> #>
function Deploy-SoftwareAction { function Deploy-SoftwareAction {
param( param(
[InstallerAction] $Action = $null [Nullable[InstallerAction]] $Action = $null
) )
[bool] $install = $null; [bool] $install = $null;