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 00dc18b commit 099d925Copy full SHA for 099d925
compiler/src/dotty/tools/dotc/Driver.scala
@@ -150,7 +150,8 @@ class Driver {
150
}.unzip
151
val ctx1 = ctx0.fresh
152
val classPaths1 = classPaths.distinct.filter(_ != "")
153
- ctx1.setSetting(ctx1.settings.classpath, (ctx1.settings.classpath.value(ctx1) :: classPaths1).mkString(":"))
+ val fullClassPath = (ctx1.settings.classpath.value(ctx1) :: classPaths1).mkString(java.io.File.pathSeparator)
154
+ ctx1.setSetting(ctx1.settings.classpath, fullClassPath)
155
(classNames, ctx1)
156
} else (fileNames0, ctx0)
157
doCompile(newCompiler(ctx), fileNames)(ctx)
0 commit comments