Skip to content

Commit 086815b

Browse files
committed
Don't aggregate on dotty-repl in sbt script
1 parent fade8b8 commit 086815b

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
@@ -264,7 +264,7 @@ object Build {
264264
// this is only necessary for compatibility with sbt which currently hardcodes the "dotty" artifact name
265265
lazy val dotty = project.in(file(".")).
266266
// FIXME: we do not aggregate `bin` because its tests delete jars, thus breaking other tests
267-
aggregate(`dotty-interfaces`, `dotty-library`, `dotty-compiler`, `dotty-doc`, dottySbtBridgeRef, `dotty-repl`).
267+
aggregate(`dotty-interfaces`, `dotty-library`, `dotty-compiler`, `dotty-doc`, dottySbtBridgeRef).
268268
dependsOn(`dotty-compiler`).
269269
dependsOn(`dotty-library`).
270270
settings(commonNonBootstrappedSettings).
@@ -279,7 +279,7 @@ object Build {
279279
// Same as `dotty` but using bootstrapped projects.
280280
lazy val `dotty-bootstrapped` = project.
281281
aggregate(`dotty-interfaces`, `dotty-library-bootstrapped`, `dotty-compiler-bootstrapped`, `dotty-doc-bootstrapped`,
282-
`dotty-language-server`, `dotty-repl`,
282+
`dotty-language-server`,
283283
dottySbtBridgeBootstrappedRef,
284284
`scala-library`, `scala-compiler`, `scala-reflect`, scalap).
285285
dependsOn(`dotty-compiler-bootstrapped`).

0 commit comments

Comments
 (0)