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
TSCBasic: correct resolvingSymlinks on Windows (#347)
The function is not meant to resolve a symbolic link in the terminal arc
but rather anywhere along the path. More specifically, it is meant to
behave similar to `realpath` on Unix. The moral equivalent operation on
Windows is `GetFinalPathNameByHandle` which takes a handle to the file
and retrieves the actual location resolving any junctions in the path.
This repairs the behaviour of the function which is important for
SourceKit-LSP's test suite.
0 commit comments