Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

Commit a331c06

Browse files
committed
tweak build to work in the Scala 2.13 community build
1 parent 35e9440 commit a331c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ lazy val crossVersionSharedSources: Seq[Setting[_]] =
3030
(unmanagedSourceDirectories in sc ).value.map { dir: File =>
3131
CrossVersion.partialVersion(scalaVersion.value) match {
3232
case Some((2, y)) if y == 11 => new File(dir.getPath + "-2.11")
33-
case Some((2, y)) if y == 12 => new File(dir.getPath + "-2.12")
33+
case Some((2, y)) if y >= 12 => new File(dir.getPath + "-2.12")
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)