Skip to content

Commit bbfe8a3

Browse files
committed
Don't unnecessarily compile the bootstrapped compiler
Previously, running `dotc ...` would compile the bootstrapped compiler even though it runs the non-bootstrapped compiler.
1 parent cd12e32 commit bbfe8a3

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
@@ -438,7 +438,7 @@ object Build {
438438
// packageAll should always be run before tests
439439
javaOptions ++= {
440440
val externalDeps = externalCompilerClasspathTask.value
441-
val jars = packageAll.in(LocalProject("dotty-compiler-bootstrapped")).value
441+
val jars = packageAll.in(LocalProject("dotty-compiler")).value
442442

443443
List(
444444
"-Ddotty.tests.classes.dottyInterfaces=" + jars("dotty-interfaces"),

0 commit comments

Comments
 (0)