Fixed minor cross-platfrom bug in Reload-MyScripts

This commit is contained in:
Gal Szkolnik 2020-10-03 16:23:08 -04:00
父節點 968b6c2bbb
當前提交 f4abdf1a2d
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

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