mirror of https://github.com/sbt/sbt.git
Merge pull request #6181 from smarter/dotty-library-rename
dotty-library is called scala3-library now
This commit is contained in:
commit
58d4ef41be
|
|
@ -179,7 +179,8 @@ private[sbt] class ClassLoaderCache(
|
|||
}
|
||||
override def apply(files: List[File]): ClassLoader = {
|
||||
files match {
|
||||
case d :: s :: Nil if d.getName.startsWith("dotty-library") =>
|
||||
case d :: s :: Nil
|
||||
if d.getName.startsWith("dotty-library") || d.getName.startsWith("scala3-library") =>
|
||||
apply(files, classOf[org.jline.terminal.Terminal].getClassLoader)
|
||||
case _ =>
|
||||
val key = new Key(files)
|
||||
|
|
|
|||
Loading…
Reference in New Issue