Fixed minor cross-platfrom bug in Reload-MyScripts

Este commit está contenido en:
Gal Szkolnik 2020-10-03 16:23:08 -04:00
padre 968b6c2bbb
commit f4abdf1a2d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -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
}
}