Skip to content

Commit

Permalink
v2.3.4
Browse files Browse the repository at this point in the history
* Stop recreating commands on import.
  • Loading branch information
BatmanAMA authored May 15, 2019
1 parent 6daf148 commit e07bead
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion module/Version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.3
2.3.4
2 changes: 1 addition & 1 deletion module/powerbox.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'powerbox.psm1'

# Version number of this module.
ModuleVersion = '2.3.3'
ModuleVersion = '2.3.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
4 changes: 2 additions & 2 deletions module/powerbox.psm1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Import-LocalizedData -BindingVariable Strings -FileName Strings -ErrorAction Ignore


# Include all function files.
Get-ChildItem $PSScriptRoot\Public\*.ps1, $PSScriptRoot\Private\*.ps1 | ForEach-Object {
# Include all function files. (not including $PSScriptRoot\Private\*.ps1 because those are used to build the module)
Get-ChildItem $PSScriptRoot\Public\*.ps1 | ForEach-Object {
. $PSItem.FullName
}

Expand Down

0 comments on commit e07bead

Please sign in to comment.