From 07eebdccb857f81b65c2299ed533e9fa7728cfb8 Mon Sep 17 00:00:00 2001 From: joshaber Date: Mon, 4 Jan 2016 11:26:58 -0500 Subject: [PATCH] Use .openExt instead of .open. Use openExt to open the repository so we get the same repo-searching behavior we had with git-utils. --- src/git-repository-async.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git-repository-async.js b/src/git-repository-async.js index f15bdf439..fe4408685 100644 --- a/src/git-repository-async.js +++ b/src/git-repository-async.js @@ -34,7 +34,7 @@ export default class GitRepositoryAsync { this.emitter = new Emitter() this.subscriptions = new CompositeDisposable() this.pathStatusCache = {} - this.repoPromise = Git.Repository.open(_path) + this.repoPromise = Git.Repository.openExt(_path) this.isCaseInsensitive = fs.isCaseInsensitive() this.upstreamByPath = {}