HashCopy.psm1
$Public = @( Get-ChildItem -Path "$PSScriptRoot/Public/*.ps1" -Recurse ) $Private = @( Get-ChildItem -Path "$PSScriptRoot/Private/*.ps1" -Recurse ) @($Private + $Public) | ForEach-Object { try { . $_.FullName } catch { Write-Error -Message "Failed to import function $($_.FullName): $_" } } |