Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7dda4a4

Browse files
committedMay 20, 2025·
improvement: Add environement variable for those working on presentation-compiler or scaladoc
1 parent c481e91 commit 7dda4a4

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)
Please sign in to comment.