Skip to content

Commit

Permalink
Merge pull request #6181 from smarter/dotty-library-rename
Browse files Browse the repository at this point in the history
dotty-library is called scala3-library now
  • Loading branch information
eed3si9n committed Dec 24, 2020
2 parents 9ca5a46 + 7f3ce50 commit 58d4ef4
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -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)
Expand Down

0 comments on commit 58d4ef4

Please sign in to comment.