Procházet zdrojové kódy

Fixes issue with paths that contain `.git`

main
Eric Amodio před 6 roky
rodič
revize
0363bcf6c6
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/git/models/repository.ts

+ 1
- 1
src/git/models/repository.ts Zobrazit soubor

@ -138,7 +138,7 @@ export class Repository extends Disposable {
private onFileSystemChanged(uri: Uri) {
// Ignore .git changes
if (/\.git/.test(uri.fsPath)) return;
if (/\.git(?:\/|\\|$)/.test(uri.fsPath)) return;
this.fireFileSystemChange(uri);
}

Načítá se…
Zrušit
Uložit