File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33 ModuleToProcess = ' PSUtil.psm1'
44
55 # Version number of this module.
6- ModuleVersion = ' 2.0.3 '
6+ ModuleVersion = ' 2.0.4 '
77
88 # ID used to uniquely identify this module
99 GUID = ' 9ef51588-c40c-4064-910d-9b624b758cf6'
Original file line number Diff line number Diff line change 11# Changelog
2+ ## Version 2.0.4 (2018-12-23)
3+ - Fix: Persisting default aliases redirection fails
4+
25## Version 2.0.3 (2018-12-23)
36 - New: Configuration setting 'PSUtil.Import.Alias.SystemOverride'. Persisting this will have PSUtil replace system default aliases.
47 - New: Tab Expansion for PowerShellGet
Original file line number Diff line number Diff line change 2828 $Command
2929 )
3030
31- if ((-not (Test-Path alias:$name )) -and (Get-PSFConfigValue - FullName PSUtil.Import.Aliases.$name - Fallback $true ))
31+ if ((( -not (Test-Path alias:$name )) -or ( $Name -eq " Select " ) -or ( $Name -eq " gm " )) -and (Get-PSFConfigValue - FullName PSUtil.Import.Aliases.$name - Fallback $true ))
3232 {
3333 New-Alias - Name $Name - Value $Command - Force - Scope Global
3434 }
You can’t perform that action at this time.
0 commit comments