shelly 1.4.4.1 → 1.4.4.2
raw patch · 2 files changed
+3/−5 lines, 2 files
Files
- shelly.cabal +1/−1
- src/Shelly.hs +2/−4
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 1.4.4.1+Version: 1.4.4.2 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides convenient systems programming in Haskell,
src/Shelly.hs view
@@ -100,7 +100,7 @@ import Data.Sequence (Seq, (|>)) import Data.Foldable (toList) import Data.Maybe-import System.IO ( hClose, stderr, stdout, openTempFile, hSetBuffering, BufferMode(LineBuffering) )+import System.IO ( hClose, stderr, stdout, openTempFile) import System.IO.Error (isPermissionError, catchIOError, isEOFError, isIllegalOperation) import System.Exit import System.Environment@@ -337,10 +337,8 @@ , delegate_ctlc = False #endif }- let outH = just $ createdOutH <|> toHandle mOutH- hSetBuffering outH LineBuffering return ( just $ createdInH <|> toHandle mInH- , outH+ , just $ createdOutH <|> toHandle mOutH , just $ createdErrorH <|> toHandle mErrorH , pHandle )