diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-16 16:20:49 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-16 16:20:49 -0400 |
commit | 909f619c07699fe6c76d40bb4649e07737a0b9ae (patch) | |
tree | 3d284a54f5bf70e2ac11d249bfa721963affb5be /git-annex.hs | |
parent | 6d13ae10cf1d295b64855984f5a526f8209f3341 (diff) |
tweaks
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-annex.hs b/git-annex.hs index 01416f6dd..f4f0cfcdf 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -3,17 +3,17 @@ import Control.Exception import System.IO import System.Environment + import qualified Annex import Types import Core import Commands -import Annex import qualified GitRepo as Git main = do args <- getArgs gitrepo <- Git.repoFromCwd - state <- new gitrepo + state <- Annex.new gitrepo (flags, actions) <- parseCmd args state tryRun state $ [startup flags] ++ actions ++ [shutdown] |