packages feed

shh 0.7.0.5 → 0.7.0.6

raw patch · 2 files changed

+2/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

shh.cabal view
@@ -1,5 +1,5 @@ name:                shh-version:             0.7.0.5+version:             0.7.0.6 synopsis:            Simple shell scripting from Haskell description:         Provides a shell scripting environment for Haskell. It                      helps you use external binaries, and allows you to
src/Shh/Internal.hs view
@@ -237,7 +237,6 @@             | ioeGetErrorType e == ResourceVanished = pure (throw e)             | otherwise = throwIO e - -- | Flipped version of `|>` with lower precedence. -- -- >>> captureTrim <| (echo "Hello" |> wc "-c")@@ -441,7 +440,7 @@             , delegate_ctlc = delegate             }         )-        (\(_,_,_,ph) -> terminateProcess ph)+        (\(_,_,_,ph) -> terminateProcess ph >> waitForProcess ph)         $ \(_,_,_,ph) -> waitProc cmd args ph `onException` (terminateProcess ph >> waitForProcess ph)  -- | Create a `Proc` from a command and a list of arguments. Does not delegate