Skip to content

Commit

Permalink
Merge pull request #4785 from commercialhaskell/remove-excess-space
Browse files Browse the repository at this point in the history
Remove excess space to extra-deps recommendations
  • Loading branch information
mattaudesse authored Apr 29, 2019
2 parents b5da6a8 + 26606d0 commit 8e8fbe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stack/Build/ConstructPlan.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ pprintExceptions exceptions stackYaml stackRoot parentMap wanted' prunedGlobalDe
pprintExtra (name, (version, BlobKey cabalHash cabalSize)) =
let cfInfo = CFIHash cabalHash (Just cabalSize)
packageIdRev = PackageIdentifierRevision name version cfInfo
in "- " <+> fromString (T.unpack (utf8BuilderToText (RIO.display packageIdRev)))
in fromString ("- " ++ T.unpack (utf8BuilderToText (RIO.display packageIdRev)))

allNotInBuildPlan = Set.fromList $ concatMap toNotInBuildPlan exceptions'
toNotInBuildPlan (DependencyPlanFailures _ pDeps) =
Expand Down

0 comments on commit 8e8fbe4

Please sign in to comment.