Fixed function exporting by using Fullname property

This commit is contained in:
Dan Franciscus
2019-05-01 14:43:33 -07:00
parent 47cabb8ab7
commit 193eab7594

View File

@@ -11,7 +11,7 @@ ForEach ($folder in $functionFolders)
ForEach ($function in $functions)
{
Write-Verbose -Message " Importing $($function.BaseName)"
. $function.providerpath
. $function.FullName
}
}
}