Explorar el Código

Fixes issue with paths that contain `.git`

main
Eric Amodio hace 6 años
padre
commit
0363bcf6c6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/models/repository.ts

+ 1
- 1
src/git/models/repository.ts Ver fichero

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

Cargando…
Cancelar
Guardar