aboutsummaryrefslogtreecommitdiff
path: root/GitRepo.hs
diff options
context:
space:
mode:
Diffstat (limited to 'GitRepo.hs')
-rw-r--r--GitRepo.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/GitRepo.hs b/GitRepo.hs
index a0909d5ec..06da2ff88 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -8,7 +8,6 @@ import System.Path
import Data.String.Utils
import Utility
import Types
-import BackendList
{- GitRepo constructor -}
gitRepo :: FilePath -> IO GitRepo
@@ -16,8 +15,7 @@ gitRepo dir = do
-- TOOD query repo for configuration settings; other repositories; etc
return GitRepo {
top = dir,
- remotes = [],
- backends = supportedBackends
+ remotes = []
}
{- Path to a repository's gitattributes file. -}