From f30f2c0d629e83ccf173e5f43296979efe658bbb Mon Sep 17 00:00:00 2001 From: joshaber Date: Fri, 15 Jan 2016 12:29:00 -0500 Subject: [PATCH] Try using .getStatusExt instead of .getStatus. --- 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 9db5ca441..5e5a07ea9 100644 --- a/src/git-repository-async.js +++ b/src/git-repository-async.js @@ -1022,7 +1022,7 @@ export default class GitRepositoryAsync { opts.pathspec = paths } - return repo.getStatus(opts) + return repo.getStatusExt(opts) }) } }