diff options
Diffstat (limited to 'Locations.hs')
-rw-r--r-- | Locations.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Locations.hs b/Locations.hs index 0cd57aa98..94c03cb91 100644 --- a/Locations.hs +++ b/Locations.hs @@ -58,6 +58,7 @@ module Locations ( gitAnnexRemotesDir, gitAnnexAssistantDefaultDir, gitAnnexFsckDb, + gitAnnexFsckDbLock, isLinkToAnnex, HashLevels(..), hashDirMixed, @@ -345,6 +346,10 @@ gitAnnexAssistantDefaultDir = "annex" gitAnnexFsckDb :: Git.Repo -> FilePath gitAnnexFsckDb r = gitAnnexDir r </> "fsck.db" +{- Lock file for the fsck database. -} +gitAnnexFsckDbLock :: Git.Repo -> FilePath +gitAnnexFsckDbLock r = gitAnnexDir r </> "fsck.dbl" + {- Checks a symlink target to see if it appears to point to annexed content. - - We only look at paths inside the .git directory, and not at the .git |