mirror of
https://github.com/Thumbscrew/PSMatrix.git
synced 2025-04-18 21:23:39 +00:00
14 lines
450 B
PowerShell
14 lines
450 B
PowerShell
# Get public and private function definition files.
|
|
$Public = @( Get-ChildItem -Path $PSScriptRoot\public\*.ps1 -Recurse )
|
|
$Private = @( Get-ChildItem -Path $PSScriptRoot\private\*.ps1 -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 '*' |