Преглед изворни кода

Fixes issue with detecting worktree repos

As `.git` is a file, not a directory
main
Eric Amodio пре 2 година
родитељ
комит
d8696e35ef
1 измењених фајлова са 1 додато и 3 уклоњено
  1. +1
    -3
      src/env/node/git/localGitProvider.ts

+ 1
- 3
src/env/node/git/localGitProvider.ts Прегледај датотеку

@ -458,11 +458,9 @@ export class LocalGitProvider implements GitProvider, Disposable {
let f;
for (f of files) {
if (!f.isDirectory()) continue;
if (f.name === '.git') {
repositories.push(resolvePath(root, f.name));
} else if (depth >= 0 && excludes[f.name] !== true) {
} else if (depth >= 0 && f.isDirectory() && excludes[f.name] !== true) {
try {
await this.repositorySearchCore(resolvePath(root, f.name), depth, excludes, repositories);
} catch (ex) {

Loading…
Откажи
Сачувај