Skip to content

Commit a83779e

Browse files
authored
bugfix: Fix Bloop import (#2825)
It looks like it's actually a mistake in the build, but since bloopInstall tries to import everything it would only show up there. If we run scala 3 targets, this would not show up.
1 parent ca406e0 commit a83779e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ object `tasty-lib` extends Cross[TastyLib](Scala.all) with CrossScalaDefaultToIn
9999
object `scala3-runtime` extends Cross[Scala3Runtime](Scala.scala3MainVersions)
100100
with CrossScalaDefaultToInternal
101101
// Logic to process classes that is shared between build and the scala-cli itself
102-
object `scala3-graal` extends Cross[Scala3Graal](Scala.mainVersions)
102+
object `scala3-graal` extends Cross[Scala3Graal](Scala.scala3MainVersions)
103103
with CrossScalaDefaultToInternal
104104
// Main app used to process classpath within build itself
105105
object `scala3-graal-processor` extends Cross[Scala3GraalProcessor](Scala.scala3MainVersions)

0 commit comments

Comments
 (0)