aboutsummaryrefslogtreecommitdiff
path: root/git-annex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'git-annex.hs')
-rw-r--r--git-annex.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-annex.hs b/git-annex.hs
index f4f0cfcdf..947868f23 100644
--- a/git-annex.hs
+++ b/git-annex.hs
@@ -9,11 +9,12 @@ import Types
import Core
import Commands
import qualified GitRepo as Git
+import BackendList
main = do
args <- getArgs
gitrepo <- Git.repoFromCwd
- state <- Annex.new gitrepo
+ state <- Annex.new gitrepo allBackends
(flags, actions) <- parseCmd args state
tryRun state $ [startup flags] ++ actions ++ [shutdown]