Skip to content

Commit 9fe4d06

Browse files
committed
Drop erronous traces
1 parent 6ed7441 commit 9fe4d06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cabal/src/Distribution/Simple/InstallDirs.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ defaultInstallDirs' False comp userInstall _hasLibs = do
209209
case buildOS of
210210
Windows -> return "$prefix"
211211
_ -> return ("$prefix" </> "lib")
212-
return $ traceShowId $
212+
return $
213213
fmap toPathTemplate $
214214
InstallDirs
215215
{ prefix = installPrefix
@@ -267,7 +267,7 @@ substituteInstallDirTemplates
267267
:: PathTemplateEnv
268268
-> InstallDirTemplates
269269
-> InstallDirTemplates
270-
substituteInstallDirTemplates env dirs = traceShow "BOOM" $ dirs'
270+
substituteInstallDirTemplates env dirs = dirs'
271271
where
272272
dirs' =
273273
InstallDirs

cabal-install/src/Distribution/Client/ProjectBuilding.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ rebuildTargetsDryRun distDirLayout@DistDirLayout{..} shared =
214214
BuildInplaceOnly{} -> do
215215
-- TODO: [nice to have] use a proper file monitor rather
216216
-- than this dir exists test
217-
exists <- doesDirectoryExist (traceShowId srcdir)
217+
exists <- doesDirectoryExist srcdir
218218
if exists
219219
then dryRunLocalPkg pkg depsBuildStatus srcdir
220220
else return (BuildStatusUnpack tarball)

0 commit comments

Comments
 (0)