We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bbbcfa commit 7f3ce50Copy full SHA for 7f3ce50
main-command/src/main/scala/sbt/internal/classpath/ClassLoaderCache.scala
@@ -179,7 +179,8 @@ private[sbt] class ClassLoaderCache(
179
}
180
override def apply(files: List[File]): ClassLoader = {
181
files match {
182
- case d :: s :: Nil if d.getName.startsWith("dotty-library") =>
+ case d :: s :: Nil
183
+ if d.getName.startsWith("dotty-library") || d.getName.startsWith("scala3-library") =>
184
apply(files, classOf[org.jline.terminal.Terminal].getClassLoader)
185
case _ =>
186
val key = new Key(files)
0 commit comments