Skip to content

Commit a1b5d43

Browse files
authored
improvement: Add environement variable for those working on presentation-compiler or scaladoc (#23210)
I hope no one is against this, since this would be a nice improvement over changing this every time.
1 parent baac46c commit a1b5d43

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
@@ -535,7 +535,7 @@ object Build {
535535
"scala2-library-tasty"
536536
)
537537

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

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

0 commit comments

Comments
 (0)