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 21b3149 commit 369fdecCopy full SHA for 369fdec
language-server/src/dotty/tools/languageserver/DottyLanguageServer.scala
@@ -64,7 +64,7 @@ class DottyLanguageServer extends LanguageServer
64
65
myDrivers = new mutable.HashMap
66
for (config <- configs) {
67
- val classpathFlags = List("-classpath", (config.classDirectory +: config.dependencyClasspath).mkString(":"))
+ val classpathFlags = List("-classpath", (config.classDirectory +: config.dependencyClasspath).mkString(File.pathSeparator))
68
val settings = defaultFlags ++ config.compilerArguments.toList ++ classpathFlags
69
myDrivers.put(config, new InteractiveDriver(settings))
70
}
0 commit comments