From 526f23761b62ac62ae07a49d79143cf610ce3bae Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 11 Jan 2021 21:58:15 -0400 Subject: Improve output to not give the impression it's stalled running fsck when it's found a problem and is working to repair it. --- Git/Repair.hs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Git') diff --git a/Git/Repair.hs b/Git/Repair.hs index ea682a2..034d7e9 100644 --- a/Git/Repair.hs +++ b/Git/Repair.hs @@ -464,14 +464,19 @@ runRepair removablebranch forced g = do putStrLn "Running git fsck ..." fsckresult <- findBroken False g if foundBroken fsckresult - then runRepair' removablebranch fsckresult forced Nothing g + then do + putStrLn "Fsck found problems, attempting repair." + runRepair' removablebranch fsckresult forced Nothing g else do + putStrLn "Fsck found no problems. Checking for broken branches." bad <- badBranches S.empty g if null bad then do putStrLn "No problems found." return (True, []) - else runRepair' removablebranch fsckresult forced Nothing g + else do + putStrLn "Found problems, attempting repair." + runRepair' removablebranch fsckresult forced Nothing g runRepairOf :: FsckResults -> (Ref -> Bool) -> Bool -> Maybe FilePath -> Repo -> IO (Bool, [Branch]) runRepairOf fsckresult removablebranch forced referencerepo g = do -- cgit v1.2.3