icinga-powershell-framework/lib/core/installer/tools/RemoveLastParent.psm1
2021-08-06 15:08:53 +02:00

6 lines
236 B
PowerShell

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