process-extras 0.7.2 → 0.7.3
raw patch · 2 files changed
+6/−1 lines, 2 filesdep ~basedep ~deepseq
Dependency ranges changed: base, deepseq
Files
- process-extras.cabal +1/−1
- src/System/Process/Common.hs +5/−0
process-extras.cabal view
@@ -1,5 +1,5 @@ Name: process-extras-Version: 0.7.2+Version: 0.7.3 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
@@ -94,6 +94,11 @@ mappend x (ExitFailure 0) = x mappend _ x = x +#if MIN_VERSION_base(4,11,0)+instance Semigroup ExitCode where+ (<>) = mappend+#endif+ -- | Process IO is based on the 'ListLikeIO' class from the ListLike -- package class ListLikeIO text char => ListLikeProcessIO text char where