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 ba4c428 commit 625ca3cCopy full SHA for 625ca3c
src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala
@@ -210,7 +210,7 @@ object ZincRunner extends WorkerMain[ZincRunnerWorkerConfig] {
210
val compileOptions =
211
CompileOptions.create
212
.withSources(sources.view.map(source => PlainVirtualFile(source.toAbsolutePath().normalize())).toArray)
213
- .withClasspath((classesOutputDir +: deps.map(_.classpath)).view.map(path => PlainVirtualFile(path)).toArray)
+ .withClasspath((classesOutputDir +: deps.view.map(_.classpath)).map(path => PlainVirtualFile(path)).toArray)
214
.withClassesDirectory(classesOutputDir)
215
.withJavacOptions(workRequest.javaCompilerOptions)
216
.withScalacOptions(
0 commit comments