DeployConcept/src/ConceptDeploy/ConceptDeploy.psm1

9 lines
288 B
PowerShell
Raw Normal View History

2024-06-07 20:21:38 +03:00
$localPath = $script:MyInvocation.MyCommand.Path
Get-ChildItem (Split-Path $localPath) -Filter '*.ps1' -Recurse | ForEach-Object {
. $_.FullName
}
Get-ChildItem "$(Split-Path $localPath)" -Filter '*.ps1' -Recurse | ForEach-Object {
Export-ModuleMember -Function $_.BaseName
}