Skip to content

Commit 625ca3c

Browse files
author
Jaden Peterson
committed
fixup! 07ae425 Incorporated suggestions
1 parent ba4c428 commit 625ca3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ object ZincRunner extends WorkerMain[ZincRunnerWorkerConfig] {
210210
val compileOptions =
211211
CompileOptions.create
212212
.withSources(sources.view.map(source => PlainVirtualFile(source.toAbsolutePath().normalize())).toArray)
213-
.withClasspath((classesOutputDir +: deps.map(_.classpath)).view.map(path => PlainVirtualFile(path)).toArray)
213+
.withClasspath((classesOutputDir +: deps.view.map(_.classpath)).map(path => PlainVirtualFile(path)).toArray)
214214
.withClassesDirectory(classesOutputDir)
215215
.withJavacOptions(workRequest.javaCompilerOptions)
216216
.withScalacOptions(

0 commit comments

Comments
 (0)