Skip to content

Commit 3e4b8fd

Browse files
committed
improvement: Add environement variable for those working on presentation-compiler or scaladoc (scala#23210)
I hope no one is against this, since this would be a nice improvement over changing this every time. [Cherry-picked a1b5d43]
1 parent c8ed940 commit 3e4b8fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ object Build {
414414
"scala2-library-tasty"
415415
)
416416

417-
val enableBspAllProjects = false
417+
val enableBspAllProjects = sys.env.get("ENABLE_BSP_ALL_PROJECTS").map(_.toBoolean).getOrElse(false)
418418

419419
// Settings used when compiling dotty with a non-bootstrapped dotty
420420
lazy val commonBootstrappedSettings = commonDottySettings ++ Seq(

0 commit comments

Comments
 (0)