mirror of
https://github.com/Avi-D-coder/implicit-hie.git
synced 2024-11-22 17:55:51 +03:00
Remove Debug.Trace
This commit is contained in:
parent
48c33baf84
commit
b794a576b7
5
hie.yaml
5
hie.yaml
@ -2,10 +2,9 @@ cradle:
|
||||
cabal:
|
||||
- path: "src"
|
||||
component: "lib:implicit-hie"
|
||||
|
||||
|
||||
- path: "app/Main.hs"
|
||||
component: "implicit-hie:exe:gen-hie"
|
||||
|
||||
|
||||
- path: "test"
|
||||
component: "implicit-hie:test:implicit-hie-test"
|
||||
|
||||
|
@ -26,7 +26,6 @@ import Hie.Yaml
|
||||
import System.Directory
|
||||
import System.FilePath.Posix
|
||||
import System.FilePattern.Directory (getDirectoryFiles)
|
||||
import Debug.Trace
|
||||
|
||||
newtype Pkgs = Pkgs [FilePath]
|
||||
deriving (Eq, Ord)
|
||||
@ -50,7 +49,7 @@ cabalPkgs p = do
|
||||
[] -> fail "no cabal files found"
|
||||
h : _ -> pure [p </> h]
|
||||
xs -> do
|
||||
cd <- liftIO $ map (p </>) <$> getDirectoryFiles p (map (matchDirs . traceShowId . T.unpack) xs)
|
||||
cd <- liftIO $ map (p </>) <$> getDirectoryFiles p (map (matchDirs . T.unpack) xs)
|
||||
cf <-
|
||||
liftIO $
|
||||
mapM (\p -> if takeExtension p == ".cabal" then pure [p] else cfs p) cd
|
||||
|
Loading…
Reference in New Issue
Block a user