shelly 1.4.0.1 → 1.4.0.2
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- shelly.cabal +1/−1
- src/Shelly.hs +1/−1
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 1.4.0.1+Version: 1.4.0.2 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides convenient systems programming in Haskell,
src/Shelly.hs view
@@ -654,7 +654,7 @@ -- Does fail if the file does not exist (use 'rm_f' instead) or is not a file. rm :: FilePath -> Sh () rm = absPath >=> \f -> do- trace $ "rm" <> toTextIgnore f+ trace $ "rm " <> toTextIgnore f -- TODO: better error message for removeFile (give filename) canonic f >>= liftIO . removeFile