Skip to content
This repository was archived by the owner on Aug 23, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Report.hs
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ closeMessage :: Int -> Int -> String
closeMessage failures total =
case (failures, total) of
(0, 1) -> "Success! Compiled 1 module."
(0, 0) -> "No modules were compiled. Try specifying files directly when running elm-make or specify one or more exposed-modules in elm-package.json when building a library."
(0, _) -> "Success! Compiled " ++ show total ++ " modules."
(1, _) -> "Detected errors in 1 module."
(n, _) -> "Detected errors in " ++ show n ++ " modules."