提交 6d0e3701 编写于 作者: J Joao

fixes #33498

上级 76575d37
...@@ -116,14 +116,20 @@ export class Model { ...@@ -116,14 +116,20 @@ export class Model {
@sequentialize @sequentialize
async tryOpenRepository(path: string): Promise<void> { async tryOpenRepository(path: string): Promise<void> {
const repository = this.getRepository(path); if (this.getRepository(path)) {
if (repository) {
return; return;
} }
try { try {
const repositoryRoot = await this.git.getRepositoryRoot(path); const repositoryRoot = await this.git.getRepositoryRoot(path);
// This can happen whenever `path` has the wrong case sensitivity in
// case insensitive file systems
// https://github.com/Microsoft/vscode/issues/33498
if (this.getRepository(repositoryRoot)) {
return;
}
const repository = new Repository(this.git.open(repositoryRoot)); const repository = new Repository(this.git.open(repositoryRoot));
this.open(repository); this.open(repository);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册