path-io 1.6.1 → 1.6.2
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- CHANGELOG.md +4/−0
- Path/IO.hs +1/−1
- path-io.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+## Path IO 1.6.2++* Fixed a bug in the `findFilesWith` and based on it `findFiles` functions.+ ## Path IO 1.6.1 * Fixed a space leak in `walkDirAccum`. [Issue
Path/IO.hs view
@@ -1242,7 +1242,7 @@ findFilesWith _ [] _ = return [] findFilesWith f (d : ds) file = do bfile <- (</> file) <$> makeAbsolute d- exist <- doesFileExist file+ exist <- doesFileExist bfile b <- if exist then f bfile else return False if b then (bfile :) <$> findFilesWith f ds file
path-io.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: path-io-version: 1.6.1+version: 1.6.2 license: BSD3 license-file: LICENSE.md maintainer: Mark Karpov <markkarpov92@gmail.com>