From d9b39323cf01273e240cccbf0dab024416856e55 Mon Sep 17 00:00:00 2001 From: joshaber Date: Mon, 4 Jan 2016 12:20:54 -0500 Subject: [PATCH] Fix the openExt call. --- 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 bfe3bb1ab..9f414ecf9 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.openExt(_path) + this.repoPromise = Git.Repository.openExt(_path, 0, '') this.isCaseInsensitive = fs.isCaseInsensitive() this.upstreamByPath = {}