icinga-powershell-framework/lib/core/installer/tools/RemoveLastParent.psm1

7 lines
236 B
PowerShell
Raw Normal View History

function Remove-IcingaForWindowsInstallerLastParent()
{
if ($global:Icinga.InstallWizard.LastParent.Count -ne 0) {
$global:Icinga.InstallWizard.LastParent.RemoveAt($global:Icinga.InstallWizard.LastParent.Count - 1);
}
}