packages feed

shelly 1.5.3.1 → 1.5.3.2

raw patch · 2 files changed

+3/−3 lines, 2 files

Files

shelly.cabal view
@@ -1,6 +1,6 @@ Name:       shelly -Version:     1.5.3.1+Version:     1.5.3.2 Synopsis:    shell-like (systems) programming in Haskell  Description: Shelly provides convenient systems programming in Haskell,
src/Shelly/Lifted.hs view
@@ -361,7 +361,7 @@ put = liftSh . S.put  catch_sh :: (Exception e) => Sh a -> (e -> Sh a) -> Sh a-catch_sh = catch+catch_sh = Control.Exception.Lifted.catch {-# DEPRECATED catch_sh "use Control.Exception.Lifted.catch instead" #-}  handle_sh :: (Exception e) => (e -> Sh a) -> Sh a -> Sh a@@ -578,4 +578,4 @@ inspect_err = liftSh . S.inspect_err  catchany :: MonadBaseControl IO m => m a -> (SomeException -> m a) -> m a-catchany = catch+catchany = Control.Exception.Lifted.catch