packages feed

shelly 0.3.0.1 → 0.3.0.2

raw patch · 2 files changed

+4/−3 lines, 2 files

Files

Shelly.hs view
@@ -2,7 +2,7 @@              MultiParamTypeClasses, FlexibleInstances #-}  -- | A module for shell-like / perl-like programming in Haskell. The stuff in--- here is not pretty, but it does get job done. The functionality provided by+-- here is not always pretty, but it gets the job done. The functionality provided by -- this module is (unlike standard Haskell filesystem functionality) -- thread-safe: each ShIO maintains its own environment and its own working -- directory.@@ -79,6 +79,7 @@  infixr 5 <>|  infixr 5 |<> + -- | mappend a Text & FilePath. Warning: uses toTextUnsafe (<>|) :: Text -> FilePath -> Text (<>|) t fp = t `mappend` toTextUnsafe fp@@ -133,7 +134,7 @@              , sStderr :: LT.Text              , sDirectory :: FilePath              , sVerbose :: Bool-             , sPrintCommands :: Bool -- * print out command+             , sPrintCommands :: Bool -- ^ print out command              , sRun :: FilePath -> [Text] -> ShIO (Handle, Handle, Handle, ProcessHandle)              , sEnvironment :: [(String, String)] } 
shelly.cabal view
@@ -1,6 +1,6 @@ Name:       shelly -Version:     0.3.0.1+Version:     0.3.0.2 Synopsis:    shell-like (systems) programming in Haskell  Description: Shelly is a package provides a single module for convenient