Explorar el Código

Fixes issue with missing revision error

main
Eric Amodio hace 6 años
padre
commit
8ee779cf93
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. +4
    -2
      src/git/git.ts

+ 4
- 2
src/git/git.ts Ver fichero

@ -586,12 +586,14 @@ export class Git {
}
catch (ex) {
const msg = ex && ex.toString();
if (GitWarnings.notFound.test(msg) || GitWarnings.foundButNotInRevision.test(msg)) return undefined;
if (ref === ':' && GitErrors.badRevision.test(msg)) {
return Git.show(repoPath, fileName, 'HEAD:', options);
}
if (GitErrors.badRevision.test(msg) ||
GitWarnings.notFound.test(msg) ||
GitWarnings.foundButNotInRevision.test(msg)) return undefined;
return gitCommandDefaultErrorHandler(ex, opts, args);
}
}

Cargando…
Cancelar
Guardar