Commit WIP

This commit is contained in:
Przemysław Kłys
2020-02-17 20:36:55 +01:00
commit 1f3229e73a
10 changed files with 513 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#Get public and private function definition files.
$Public = @( Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 -ErrorAction SilentlyContinue -Recurse )
$Private = @( Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 -ErrorAction SilentlyContinue -Recurse )
#Dot source the files
Foreach ($import in @($Public + $Private)) {
Try {
. $import.fullname
} Catch {
Write-Error -Message "Failed to import function $($import.fullname): $_"
}
}
Export-ModuleMember -Function '*' -Alias '*'