Skip to content

Commit

Permalink
Fix metals#6382
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed May 8, 2024
1 parent e8a4b8d commit 4a0a1f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ private[sbtplugin] object InternalTasks {
val observables = for {
(proj, configs) <- Keys.bspInternalDependencyConfigurations.value
config <- configs
} yield (proj / config / debugAdapterClassUpdates)
} yield (proj / config / debugAdapterClassUpdates).?
Def.setting {
observables.join.value.fold(Observable.empty[Seq[String]])(_ mergeWith _)
observables.join.value.flatten.fold(Observable.empty[Seq[String]])(_ mergeWith _)
}
}

Expand Down

0 comments on commit 4a0a1f9

Please sign in to comment.