src/poshy-sh-isms.psm1
#!/usr/bin/env pwsh $ErrorActionPreference = "Stop" Set-StrictMode -Version Latest Get-ChildItem -Path "$PSScriptRoot/*.ps1" | ForEach-Object { . $_.FullName } Export-ModuleMember -Function * |
#!/usr/bin/env pwsh $ErrorActionPreference = "Stop" Set-StrictMode -Version Latest Get-ChildItem -Path "$PSScriptRoot/*.ps1" | ForEach-Object { . $_.FullName } Export-ModuleMember -Function * |