Skip to content

Commit

Permalink
fixup! 07ae425 Incorporated suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaden Peterson committed Dec 20, 2024
1 parent ba4c428 commit 625ca3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ object ZincRunner extends WorkerMain[ZincRunnerWorkerConfig] {
val compileOptions =
CompileOptions.create
.withSources(sources.view.map(source => PlainVirtualFile(source.toAbsolutePath().normalize())).toArray)
.withClasspath((classesOutputDir +: deps.map(_.classpath)).view.map(path => PlainVirtualFile(path)).toArray)
.withClasspath((classesOutputDir +: deps.view.map(_.classpath)).map(path => PlainVirtualFile(path)).toArray)
.withClassesDirectory(classesOutputDir)
.withJavacOptions(workRequest.javaCompilerOptions)
.withScalacOptions(
Expand Down

0 comments on commit 625ca3c

Please sign in to comment.