From 6d5930da49ce7410f8a25a7fa09a9ceeb89b3ae6 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Fri, 20 Aug 2021 18:13:25 +0200 Subject: [PATCH] Fixes module file which should point to .psd1 --- icinga-powershell-framework.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icinga-powershell-framework.psm1 b/icinga-powershell-framework.psm1 index 524a938..469dfb4 100644 --- a/icinga-powershell-framework.psm1 +++ b/icinga-powershell-framework.psm1 @@ -199,7 +199,7 @@ function Get-IcingaForWindowsRootPath() function Get-IcingaPowerShellModuleFile() { - return (Join-Path -Path $PSScriptRoot -ChildPath 'icinga-powershell-framework.psm1'); + return (Join-Path -Path $PSScriptRoot -ChildPath 'icinga-powershell-framework.psd1'); } function Invoke-IcingaCommand()