Use filePath instead of path as variable name

This commit is contained in:
Kevin Sawicki
2013-06-12 17:04:14 -07:00
parent bfdad19911
commit e25aece700

View File

@@ -8,8 +8,8 @@ module.exports =
if repo?
workingDirectoryPath = repo.getWorkingDirectory()
statuses = {}
for path, status of repo.getStatus()
statuses[path.join(workingDirectoryPath, path)] = status
for filePath, status of repo.getStatus()
statuses[path.join(workingDirectoryPath, filePath)] = status
upstream = repo.getAheadBehindCount()
repo.release()
else