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