diff options
author | Matt Graeber <PowerShellMafia@users.noreply.github.com> | 2015-11-09 10:52:41 -0800 |
---|---|---|
committer | Matt Graeber <PowerShellMafia@users.noreply.github.com> | 2015-11-09 10:52:41 -0800 |
commit | a78b40429e745a9f32a0d4a50836d5db07a62873 (patch) | |
tree | e7bb487e2cfd03afa3a27527d954d5e3d0d0067e /PowerSploit.psm1 | |
parent | a0ab599810f8f05a9bf24850fb9104516b71abb7 (diff) | |
download | PowerSploit-a78b40429e745a9f32a0d4a50836d5db07a62873.tar.gz PowerSploit-a78b40429e745a9f32a0d4a50836d5db07a62873.zip |
Revert "Excluding the Tests folder from being loaded as a module"
This reverts commit a0ab599810f8f05a9bf24850fb9104516b71abb7.
Diffstat (limited to 'PowerSploit.psm1')
-rw-r--r-- | PowerSploit.psm1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PowerSploit.psm1 b/PowerSploit.psm1 index 9bc0240..550b8be 100644 --- a/PowerSploit.psm1 +++ b/PowerSploit.psm1 @@ -1 +1 @@ -Get-ChildItem $PSScriptRoot | ? { $_.PSIsContainer -and ($_.Name -ne 'Tests') } | % { Import-Module $_.FullName -DisableNameChecking } +Get-ChildItem $PSScriptRoot | ? { $_.PSIsContainer } | % { Import-Module $_.FullName -DisableNameChecking } |