We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d22cd0 commit 709ce46Copy full SHA for 709ce46
cabal-install/tests/UnitTests/Distribution/Client/VCS.hs
@@ -745,7 +745,7 @@ getDirectoryContentsRecursive ignore dir0 dir = do
745
isdir <- doesDirectoryExist (dir0 </> dir </> entry)
746
return (dir </> entry, isdir)
747
| entry <- entries
748
- , not (isPrefixOf "." entry)
+ , not ("." `isPrefixOf` entry)
749
, (dir </> entry) `Set.notMember` ignore
750
]
751
let subdirs = [d | (d, True) <- entries']
0 commit comments