shelly 0.7 → 0.7.1
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- Shelly.hs +2/−1
- shelly.cabal +1/−1
Shelly.hs view
@@ -142,6 +142,7 @@ cmd fp args = run fp $ toTextArgs args -} +-- | Helper to convert a Text to a FilePath. Used for arguments to 'cmd' class ToFilePath a where toFilePath :: a -> FilePath @@ -187,7 +188,7 @@ cmd fp = cmdAll fp [] -- | uses System.FilePath.CurrentOS, but can automatically convert a Text-(</>) :: (ToFilePath filepath) => filepath -> filepath -> FilePath+(</>) :: (ToFilePath filepath1, ToFilePath filepath2) => filepath1 -> filepath2 -> FilePath x </> y = toFilePath x FP.</> toFilePath y -- | uses System.FilePath.CurrentOS, but can automatically convert a Text
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 0.7+Version: 0.7.1 Synopsis: shell-like (systems) programming in Haskell Description: Shelly is a package provides a single module for convenient