Skip to content

Commit 895dfe0

Browse files
authored
fix: make scala3-nonbootstrapped the default project (#24455)
Finally, we make `scala3-nonbootstrapped` the default project :)
2 parents 071a0d2 + daf4a6a commit 895dfe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ object Build {
653653
// ================================= NON-BOOTSTRAPPED PROJECTS ==================================
654654
// ==============================================================================================
655655

656-
lazy val `scala3-nonbootstrapped` = project
656+
lazy val `scala3-nonbootstrapped` = project.in(file("."))
657657
.aggregate(`scala3-interfaces`, `scala3-library-nonbootstrapped` , `scala-library-nonbootstrapped`,
658658
`tasty-core-nonbootstrapped`, `scala3-compiler-nonbootstrapped`, `scala3-sbt-bridge-nonbootstrapped`)
659659
.settings(
@@ -815,7 +815,7 @@ object Build {
815815
// Nothing to be published by this project
816816
publish / skip := true,
817817
// Project specific target folder. sbt doesn't like having two projects using the same target folder
818-
target := target.value / "scala3-bootstrapped",
818+
target := (ThisBuild / baseDirectory).value / "target" / "scala3-bootstrapped",
819819
scalac := Def.inputTaskDyn {
820820
val log = streams.value.log
821821
val externalDeps = (`scala3-compiler-bootstrapped-new` / Runtime / externalDependencyClasspath).value

0 commit comments

Comments
 (0)