summaryrefslogtreecommitdiff
path: root/Remote/Helper/Git.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Remote/Helper/Git.hs')
-rw-r--r--Remote/Helper/Git.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Remote/Helper/Git.hs b/Remote/Helper/Git.hs
index 5c611e46ab..12348f7a52 100644
--- a/Remote/Helper/Git.hs
+++ b/Remote/Helper/Git.hs
@@ -42,7 +42,8 @@ gitRepoInfo r = do
let lastsynctime = case mtimes of
[] -> "never"
_ -> show $ posixSecondsToUTCTime $ realToFrac $ maximum mtimes
+ repo <- Remote.getRepo r
return
- [ ("repository location", Git.repoLocation (Remote.repo r))
+ [ ("repository location", Git.repoLocation repo)
, ("last synced", lastsynctime)
]