shh 0.7.0.4 → 0.7.0.5
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- shh.cabal +1/−1
- src/Shh/Internal.hs +1/−1
shh.cabal view
@@ -1,5 +1,5 @@ name: shh-version: 0.7.0.4+version: 0.7.0.5 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
@@ -442,7 +442,7 @@ } ) (\(_,_,_,ph) -> terminateProcess ph)- $ \(_,_,_,ph) -> waitProc cmd args ph `onException` terminateProcess 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 -- control-c handling.