From eedac0a9513f14aac391605d6be7720cfb4a7ec4 Mon Sep 17 00:00:00 2001 From: joshaber Date: Tue, 5 Jan 2016 17:31:34 -0500 Subject: [PATCH] We'll store them by path instead of by name. --- 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 1c77575a6..b1daca77a 100644 --- a/src/git-repository-async.js +++ b/src/git-repository-async.js @@ -39,7 +39,7 @@ export default class GitRepositoryAsync { this.repoPromise = this.openRepository() this.isCaseInsensitive = fs.isCaseInsensitive() this.upstream = {} - this.submodulesByName = {} + this.submodulesByPath = {} this._refreshingCount = 0