summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-19 12:53:51 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-19 12:53:51 -0400
commit2ea589e117bcc36ee613454ffb52b8e52cc96bc9 (patch)
tree86abaccf7c34709d8ad231c0c52cb83b690fc2a9
parent2caf711827470976f935bb06bb3b6b87e1776299 (diff)
don't throw a fatal error
-rw-r--r--Core.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core.hs b/Core.hs
index 0af22ee73..5bf108393 100644
--- a/Core.hs
+++ b/Core.hs
@@ -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"