mirror of https://github.com/sbt/sbt.git
Merge pull request #2542 from eed3si9n/wip/ivypath
Add toString to IvyPaths for debugging purpose
This commit is contained in:
commit
c35cb7f54e
|
|
@ -9,6 +9,7 @@ import scala.xml.NodeSeq
|
|||
|
||||
final class IvyPaths(val baseDirectory: File, val ivyHome: Option[File]) {
|
||||
def withBase(newBaseDirectory: File) = new IvyPaths(newBaseDirectory, ivyHome)
|
||||
override def toString: String = s"IvyPath($baseDirectory, $ivyHome)"
|
||||
}
|
||||
sealed trait IvyConfiguration {
|
||||
type This <: IvyConfiguration
|
||||
|
|
|
|||
Loading…
Reference in New Issue