slways set current version in new repos

detect v1 repos that don't have a version set
This commit is contained in:
Joey Hess 2011-03-16 02:15:54 -04:00
parent e227c210ec
commit a4d0250298
2 changed files with 17 additions and 11 deletions

View file

@ -17,8 +17,7 @@ upgrade :: Annex Bool
upgrade = do
version <- getVersion
case version of
Just "0" -> Upgrade.V0.upgrade
Just "1" -> Upgrade.V1.upgrade
Nothing -> return True -- repo not initted yet, no version
Just v | v == currentVersion -> return True
Just _ -> error "this version of git-annex is too old for this git repository!"
"0" -> Upgrade.V0.upgrade
"1" -> Upgrade.V1.upgrade
v | v == currentVersion -> return True
_ -> error "this version of git-annex is too old for this git repository!"