mirror of https://github.com/sbt/sbt.git
Scala 2.10 fix
This commit is contained in:
parent
c061717521
commit
a35e30c8ad
|
|
@ -13,12 +13,14 @@ object Cache {
|
||||||
lines
|
lines
|
||||||
.find(_.startsWith("maven:"))
|
.find(_.startsWith("maven:"))
|
||||||
.map(_.stripPrefix("maven:").trim)
|
.map(_.stripPrefix("maven:").trim)
|
||||||
|
.toSeq
|
||||||
.contains("true")
|
.contains("true")
|
||||||
|
|
||||||
def ivyLike =
|
def ivyLike =
|
||||||
lines
|
lines
|
||||||
.find(_.startsWith("ivy-like:"))
|
.find(_.startsWith("ivy-like:"))
|
||||||
.map(_.stripPrefix("ivy-like:").trim)
|
.map(_.stripPrefix("ivy-like:").trim)
|
||||||
|
.toSeq
|
||||||
.contains("true")
|
.contains("true")
|
||||||
|
|
||||||
def base =
|
def base =
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue