diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-19 12:53:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-19 12:53:51 -0400 |
commit | 2ea589e117bcc36ee613454ffb52b8e52cc96bc9 (patch) | |
tree | 86abaccf7c34709d8ad231c0c52cb83b690fc2a9 /Core.hs | |
parent | 2caf711827470976f935bb06bb3b6b87e1776299 (diff) |
don't throw a fatal error
Diffstat (limited to 'Core.hs')
-rw-r--r-- | Core.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,4 +107,4 @@ showEndOk = do showEndFail :: String -> String -> Annex () showEndFail command file = do liftIO $ putStrLn "" - error $ command ++ " " ++ file ++ " failed" + liftIO $ hPutStrLn stderr $ command ++ " " ++ file ++ " failed" |