process-extras 0.4.1 → 0.4.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesdep ~basedep ~deepseq
Dependency ranges changed: base, deepseq
Files
- process-extras.cabal +1/−1
- src/System/Process/Common.hs +1/−1
process-extras.cabal view
@@ -1,5 +1,5 @@ Name: process-extras-Version: 0.4.1+Version: 0.4.1.1 Synopsis: Process extras Description: Extends <http://hackage.haskell.org/package/process>. Read process input and output as ByteStrings or
src/System/Process/Common.hs view
@@ -199,4 +199,4 @@ -- before they have read all of their input. ignoreResourceVanished :: IO () -> IO () ignoreResourceVanished action =- action `catch` (\e -> if ioe_type e == ResourceVanished then return pure () else ioError e)+ action `catch` (\e -> if ioe_type e == ResourceVanished then return () else ioError e)