diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-14 14:44:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-14 14:44:24 -0400 |
commit | 0e55d6a907a39c3b7239268261edc2d5b5f55caf (patch) | |
tree | f296a331d44c0ecbafcbfa3a417c7516543ed6f5 /git-annex.hs | |
parent | 10f30cf6383167e72ced5c6138ee6857b3fd63eb (diff) |
move stuff out of Core
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-annex.hs b/git-annex.hs index 098ccac2d..d111156f0 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -9,6 +9,7 @@ import System.Environment import qualified Annex import Core +import Upgrade import CmdLine import qualified GitRepo as Git import BackendList @@ -19,4 +20,4 @@ main = do gitrepo <- Git.repoFromCwd state <- Annex.new gitrepo allBackends (configure, actions) <- parseCmd args state - tryRun state $ [startup] ++ configure ++ actions ++ [shutdown] + tryRun state $ [startup, upgrade] ++ configure ++ actions ++ [shutdown] |