Fix oversight in InvalidComponent message

This commit is contained in:
jvican 2017-05-18 18:26:45 +02:00
parent 8d9d007d3c
commit d48f65a8a7
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ private[inc] class ZincComponentCompiler(
val mod = bridgeSources.toString
val unresolvedLines = unresolvedWarningLines.showLines(uw)
val unretrievedMessage = s"The compiler bridge sources $mod could not be retrieved."
throw new InvalidComponent(s"$unresolvedLines\n$unresolvedLines")
throw new InvalidComponent(s"$unretrievedMessage\n$unresolvedLines")
case Right(allArtifacts) =>
val (srcs, xsbtiJars) = allArtifacts.partition(_.getName.endsWith("-sources.jar"))