Add missing return

This commit is contained in:
Daniel Hengeveld
2015-10-26 16:38:09 +01:00
parent abd41d1208
commit 806047bd27

View File

@@ -65,7 +65,7 @@ module.exports = class GitRepositoryAsync {
isPathIgnored (_path) {
return this.repoPromise.then((repo) => {
Git.Ignore.pathIsIgnored(repo, _path)
return Git.Ignore.pathIsIgnored(repo, _path)
})
}