Parcourir la source

Fixes issue with paths that contain `.git`

main
Eric Amodio il y a 6 ans
Parent
révision
0363bcf6c6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/models/repository.ts

+ 1
- 1
src/git/models/repository.ts Voir le fichier

@ -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);
}

Chargement…
Annuler
Enregistrer