Fixed minor cross-platfrom bug in Reload-MyScripts
This commit is contained in:
parent
968b6c2bbb
commit
f4abdf1a2d
|
@ -37,7 +37,7 @@ function getScriptName{param([string]$FullPath)
|
|||
$local:myAliases = [ordered]@{}
|
||||
if( Test-Path $(Join-Path $MyPSScriptRoot Aliases) ) {
|
||||
Get-ChildItem $(Join-Path $MyPSScriptRoot Aliases) | ForEach-Object {
|
||||
$myAliases[$_.BaseName] = Get-Content $_
|
||||
$myAliases[$_.BaseName] = Get-Content $_.FullName
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue