From f1398b558316a936690a8f3b01493f498d15b659 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 22 Mar 2012 00:23:15 -0400 Subject: use new getConfig --- Annex/UUID.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Annex/UUID.hs') diff --git a/Annex/UUID.hs b/Annex/UUID.hs index 0ab2e7e52..e8306de90 100644 --- a/Annex/UUID.hs +++ b/Annex/UUID.hs @@ -47,7 +47,7 @@ getUUID = getRepoUUID =<< gitRepo {- Looks up a repo's UUID, caching it in .git/config if it's not already. -} getRepoUUID :: Git.Repo -> Annex UUID getRepoUUID r = do - c <- fromRepo cached + c <- toUUID <$> getConfig cachekey "" let u = getUncachedUUID r if c /= u && u /= NoUUID @@ -56,7 +56,6 @@ getRepoUUID r = do return u else return c where - cached = toUUID . Git.Config.get cachekey "" updatecache u = do g <- gitRepo when (g /= r) $ storeUUID cachekey u -- cgit v1.2.3