diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-04-03 13:51:32 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-04-03 13:51:32 -0400 |
commit | fff817f70ce3c86d873775c0d113b074cc486ff8 (patch) | |
tree | d5928753dd737992fc94f468428041b32485479b /Upgrade | |
parent | 9aa8eea09d5c663f1999ce17b44c21fad395b57c (diff) |
rename showProgress -> showProgressDots
Diffstat (limited to 'Upgrade')
-rw-r--r-- | Upgrade/V2.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Upgrade/V2.hs b/Upgrade/V2.hs index 0f09205ff..71ac8f7fa 100644 --- a/Upgrade/V2.hs +++ b/Upgrade/V2.hs @@ -44,7 +44,7 @@ upgrade = do old <- fromRepo olddir Annex.Branch.create - showProgress + showProgressDots e <- liftIO $ doesDirectoryExist old when e $ do @@ -53,12 +53,12 @@ upgrade = do mapM_ (\f -> inject f f) =<< logFiles old saveState False - showProgress + showProgressDots when e $ do inRepo $ Git.Command.run [Param "rm", Param "-r", Param "-f", Param "-q", File old] unless bare $ inRepo gitAttributesUnWrite - showProgress + showProgressDots unless bare push |