mirror of https://github.com/sbt/sbt.git
Fix oversight in InvalidComponent message
This commit is contained in:
parent
8d9d007d3c
commit
d48f65a8a7
|
|
@ -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"))
|
||||
|
|
|
|||
Loading…
Reference in New Issue