Browse Source

Ensures path normalization

main
Eric Amodio 1 year ago
parent
commit
8c4e857618
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts View File

@ -1396,7 +1396,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
return;
}
if (equalsIgnoreCase(uri.fsPath, resolvedPath)) {
if (pathEquals(uri.fsPath, resolvedPath)) {
Logger.debug(scope, `No symlink detected; repoPath=${repoPath}`);
resolve([repoPath!, undefined]);
return;

Loading…
Cancel
Save