2011-03-16 19:48:26 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Upgrade where
|
|
|
|
|
|
|
|
import Command
|
2011-03-19 22:58:10 +00:00
|
|
|
import Upgrade
|
|
|
|
import Version
|
2011-03-22 00:46:43 +00:00
|
|
|
import Messages
|
2011-03-16 19:48:26 +00:00
|
|
|
|
|
|
|
command :: [Command]
|
2011-03-19 22:58:10 +00:00
|
|
|
command = [standaloneCommand "upgrade" paramNothing seek
|
|
|
|
"upgrade repository layout"]
|
2011-03-16 19:48:26 +00:00
|
|
|
|
|
|
|
seek :: [CommandSeek]
|
|
|
|
seek = [withNothing start]
|
|
|
|
|
|
|
|
start :: CommandStartNothing
|
|
|
|
start = do
|
2011-03-22 00:46:43 +00:00
|
|
|
showStart "upgrade" ""
|
2011-03-19 22:58:10 +00:00
|
|
|
r <- upgrade
|
|
|
|
checkVersion
|
|
|
|
return $ Just $ return $ Just $ return r
|