diff --git a/package.json b/package.json index fb82096c0..8f1d8129a 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "ctags": "0.3.0", "oniguruma": "0.8.0", "mkdirp": "0.3.5", - "git-utils": "0.7.0", + "git-utils": "0.8.0", "underscore": "1.4.4", "d3": "3.0.8", "coffee-cache": "0.1.0", diff --git a/src/app/repository-status-handler.coffee b/src/app/repository-status-handler.coffee index 3b55acdb5..7816cf383 100644 --- a/src/app/repository-status-handler.coffee +++ b/src/app/repository-status-handler.coffee @@ -7,7 +7,7 @@ module.exports = if repo? workingDirectoryPath = repo.getWorkingDirectory() statuses = {} - for path, status of repo.getStatuses() + for path, status of repo.getStatus() statuses[fs.join(workingDirectoryPath, path)] = status upstream = repo.getAheadBehindCount() repo.release()