You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
join-path doesn't seem to like concatenating the paths for $home & '.ssh\$File' as it errors on the wrapped Resolve-Path with can't find the path ...\.ssh\$File. Dropping down to .NET fixes this Resolve-Path ([io.path]::combine($home, '.ssh', $File))
Powershell Version
> $PSVersionTable.PSVersion
Major Minor Build Revision
----- ----- ----- --------
5 0 10586 63
Windows Version
> [environment]::OSVersion.Version
Major Minor Build Revision
----- ----- ----- --------
10 0 10586 0
The text was updated successfully, but these errors were encountered:
Get-SshPath
join-path
doesn't seem to like concatenating the paths for$home
&'.ssh\$File'
as it errors on the wrappedResolve-Path
with can't find the path...\.ssh\$File
. Dropping down to .NET fixes thisResolve-Path ([io.path]::combine($home, '.ssh', $File))
Powershell Version
Windows Version
The text was updated successfully, but these errors were encountered: