From 50e4602f7c7262689e0b5e4f4d349f2920eeb75f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 10 Dec 2012 17:44:55 -0800 Subject: [PATCH] Use getPath() internally --- src/app/git.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/git.coffee b/src/app/git.coffee index d300de60a..ea4127744 100644 --- a/src/app/git.coffee +++ b/src/app/git.coffee @@ -19,7 +19,7 @@ class Git getPath: -> @repo.getPath() getWorkingDirectory: -> - repoPath = @repo.getPath() + repoPath = @getPath() if repoPath repoPath.substring(0, repoPath.length - 5)