diff options
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annex.hs b/git-annex.hs index ec80359b6..7bcd4de22 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -19,7 +19,7 @@ main = do - and propigating an overall error status at the end. -} tryRun errnum oknum [] = do if (errnum > 0) - then error $ (show errnum) ++ " failed ; " ++ show (oknum) ++ " succeeded" + then error $ (show errnum) ++ " failed ; " ++ show (oknum) ++ " ok" else return () tryRun errnum oknum (a:as) = do result <- try (a)::IO (Either SomeException ()) |