change search method for cabal-dev

This commit is contained in:
Hideyuki Tanaka 2011-11-24 20:43:15 +09:00
parent 9097f6c169
commit 37dc29044a
1 changed files with 3 additions and 3 deletions

View File

@ -7,6 +7,7 @@ If the directory 'cabal-dev/packages-X.X.X.conf' exists, add it to the
options ghc-mod uses to check the source. Otherwise just pass it on.
-}
import Control.Applicative ((<$>))
import Data.Maybe (listToMaybe)
import System.FilePath.Find
import System.FilePath.Posix (splitPath,joinPath,(</>))
@ -37,9 +38,8 @@ searchIt [] = return Nothing
searchIt path = do
a <- doesDirectoryExist (mpath path)
if a then do
b <- find always (fileName ~~? "packages*.conf") $ mpath path
maybe (searchIt $ init path) (return . Just) $ listToMaybe b
listToMaybe <$> find always (fileName ~~? "packages*.conf") (mpath path)
else
return Nothing
searchIt $ init path
where
mpath a = joinPath a </> "cabal-dev/"