mirror of https://github.com/sbt/sbt.git
add missing newline in conflict warning
This commit is contained in:
parent
f478b0b907
commit
2eab86bf25
|
|
@ -12,7 +12,7 @@ object ConflictWarning
|
|||
val conflicts = IvyActions.groupedConflicts(config.filter, config.group)(report)
|
||||
if(!conflicts.isEmpty)
|
||||
{
|
||||
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":"
|
||||
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":\n "
|
||||
val conflictMsgs =
|
||||
for( (label, versions) <- conflicts ) yield
|
||||
label + ": " + versions.mkString(", ")
|
||||
|
|
|
|||
Loading…
Reference in New Issue