Skip to content

Commit fd07273

Browse files
Fix autoloader; split commands in Pester step
1 parent 509dacd commit fd07273

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

NicolasAigner.SystemToolkit.psm1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Auto‑loader: importa todas as funções do subdiretório Functions
2-
Get-ChildItem -Path (Join-Path $PSScriptRoot 'Functions') -Filter '*.ps1' | ForEach-Object {
2+
Get-ChildItem -Path (Join-Path $PSScriptRoot 'Functions') -Filter '*.ps1' |
3+
ForEach-Object {
34
. $_.FullName
45
Export-ModuleMember -Function $_.BaseName
5-
}
6+
}

0 commit comments

Comments
 (0)