shelly 1.3.0.4 → 1.3.0.5
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- shelly.cabal +1/−1
- src/Shelly.hs +1/−1
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 1.3.0.4+Version: 1.3.0.5 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides convenient systems programming in Haskell,
src/Shelly.hs view
@@ -529,7 +529,7 @@ which :: FilePath -> Sh (Maybe FilePath) which originalFp = whichFull #if defined(mingw32_HOST_OS)- case extension originalFp of+ $ case extension originalFp of Nothing -> originalFp <.> "exe" Just _ -> originalFp #else