explicit exports

This commit is contained in:
Joey Hess 2010-10-11 17:52:46 -04:00
parent af82586adf
commit ebc3fbe9ae
11 changed files with 58 additions and 39 deletions

View file

@ -1,7 +1,10 @@
{- git-annex file locations
-}
module Locations where
module Locations (
gitStateDir,
stateLoc
) where
import GitRepo
@ -9,4 +12,4 @@ import GitRepo
- directory, in the git repository. -}
stateLoc = ".git-annex"
gitStateDir :: GitRepo -> FilePath
gitStateDir repo = (top repo) ++ "/" ++ stateLoc ++ "/"
gitStateDir repo = (gitRepoTop repo) ++ "/" ++ stateLoc ++ "/"