We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c3e55b commit 4b3340fCopy full SHA for 4b3340f
compiler/src/dotty/tools/dotc/quoted/QuoteDriver.scala
@@ -97,7 +97,7 @@ object QuoteDriver {
97
// Loads the classes loaded by this class loader
98
// When executing `run` or `test` in sbt the classpath is not in the property java.class.path
99
import java.nio.file.Paths
100
- val newClasspath = cl.getURLs.map(url => Paths.get(url.toURI).toFile)
+ val newClasspath = cl.getURLs.map(url => Paths.get(url.toURI).toString)
101
newClasspath.mkString("", java.io.File.pathSeparator, if (classpath0 == "") "" else java.io.File.pathSeparator + classpath0)
102
case _ => classpath0
103
}
0 commit comments