From 84da80da29fc1508db71216fe04c670bce4a0dca Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Fri, 11 Dec 2015 18:23:37 -0800 Subject: [PATCH] Adjust text of final progress message --- src/Stack/Build/Execute.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stack/Build/Execute.hs b/src/Stack/Build/Execute.hs index d8ca91e678..7a075eb9fd 100644 --- a/src/Stack/Build/Execute.hs +++ b/src/Stack/Build/Execute.hs @@ -487,7 +487,7 @@ executePlan' installedMap0 plan ee@ExecuteEnv {..} = do let total = length actions loop prev | prev == total = - runInBase $ $logStickyDone ("Completed all " <> T.pack (show total) <> " actions.") + runInBase $ $logStickyDone ("Completed " <> T.pack (show total) <> " action(s).") | otherwise = do when terminal $ runInBase $ $logSticky ("Progress: " <> T.pack (show prev) <> "/" <> T.pack (show total))