mirror of https://github.com/sbt/sbt.git
Fix Eval on Windows
This commit is contained in:
parent
713a495f92
commit
d0003bbb0f
|
|
@ -43,7 +43,7 @@ class Eval(
|
||||||
case None => VirtualDirectory("output")
|
case None => VirtualDirectory("output")
|
||||||
private val classpathString = (backingDir.toList ++ classpath)
|
private val classpathString = (backingDir.toList ++ classpath)
|
||||||
.map(_.toString)
|
.map(_.toString)
|
||||||
.mkString(":")
|
.mkString(java.io.File.pathSeparator)
|
||||||
private lazy val driver: EvalDriver = new EvalDriver
|
private lazy val driver: EvalDriver = new EvalDriver
|
||||||
private lazy val reporter: EvalReporter = mkReporter match
|
private lazy val reporter: EvalReporter = mkReporter match
|
||||||
case Some(f) => f()
|
case Some(f) => f()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue