Fix missing newline
This commit is contained in:
parent
71c8361911
commit
0277d44695
@ -564,7 +564,7 @@ exitError msg = gmErrStrLn (dropWhileEnd (=='\n') msg) >> liftIO exitFailure
|
|||||||
|
|
||||||
exitError' :: Options -> String -> IO a
|
exitError' :: Options -> String -> IO a
|
||||||
exitError' opts msg = do
|
exitError' opts msg = do
|
||||||
gmUnsafeErrStr (optOutput opts) msg
|
gmUnsafeErrStr (optOutput opts) $ dropWhileEnd (=='\n') msg ++ "\n"
|
||||||
liftIO exitFailure
|
liftIO exitFailure
|
||||||
|
|
||||||
fatalError :: String -> a
|
fatalError :: String -> a
|
||||||
|
Loading…
Reference in New Issue
Block a user