Skip to content

Commit f867544

Browse files
committed
Use runForkedTask instead of exclusive run command
1 parent fd2da87 commit f867544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/javalib/src/mill/javalib/bsp/BspRunModule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private[mill] object BspRunModule extends ExternalModule {
2727
object internalBspRunModule extends mill.api.Module with BspRunModuleApi {
2828

2929
override private[mill] def bspRun(args: Seq[String]): Task[Unit] = Task.Anon {
30-
runModule.run(Task.Anon(Args(args)))()
30+
runModule.runForkedTask(runModule.finalMainClass, Task.Anon(Args(args)))()
3131
}
3232

3333
override private[mill] def bspJvmRunEnvironment: Task.Simple[(

0 commit comments

Comments
 (0)