summaryrefslogtreecommitdiff
path: root/Locations.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Locations.hs')
-rw-r--r--Locations.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Locations.hs b/Locations.hs
index 31bb3d9de..300f443f7 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -9,7 +9,7 @@ module Locations (
import GitRepo
{- Long-term, cross-repo state is stored in files inside the .git-annex
- - directory, in the git repository. -}
+ - directory, in the git repository's working tree. -}
stateLoc = ".git-annex"
gitStateDir :: GitRepo -> FilePath
-gitStateDir repo = (gitRepoTop repo) ++ "/" ++ stateLoc ++ "/"
+gitStateDir repo = (gitWorkTree repo) ++ "/" ++ stateLoc ++ "/"