File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
cabal-install/Distribution/Client Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ import Data.Map (Map)
140
140
import Data.List
141
141
import Data.Maybe
142
142
import Data.Either
143
+ import Control.Monad (void )
143
144
import Control.Exception (Exception (.. ), throwIO , assert )
144
145
import System.Exit (ExitCode (.. ), exitFailure )
145
146
#ifdef MIN_VERSION_unix
@@ -349,11 +350,11 @@ runProjectPostBuildPhase verbosity
349
350
pkgsBuildStatus
350
351
buildOutcomes
351
352
352
- _ <- writePlanGhcEnvironment (distProjectRootDirectory
353
- distDirLayout)
354
- elaboratedPlanOriginal
355
- elaboratedShared
356
- postBuildStatus
353
+ void $ writePlanGhcEnvironment (distProjectRootDirectory
354
+ distDirLayout)
355
+ elaboratedPlanOriginal
356
+ elaboratedShared
357
+ postBuildStatus
357
358
358
359
-- Finally if there were any build failures then report them and throw
359
360
-- an exception to terminate the program
You can’t perform that action at this time.
0 commit comments