Skip to content

Commit 24df4f5

Browse files
More explicit 2.11+ source directory
1 parent 8c769ae commit 24df4f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ lazy val sourcecode = crossProject(JSPlatform, JVMPlatform, NativePlatform)
4141
test in Test := (run in Test).toTask("").value,
4242
unmanagedSourceDirectories in Compile ++= {
4343
CrossVersion.partialVersion(scalaVersion.value) match {
44-
case Some((2, n)) if n >= 12 =>
45-
Seq(baseDirectory.value / ".." / "shared" / "src" / "main" / "scala-2.11")
44+
case Some((2, n)) if n >= 11 =>
45+
Seq(baseDirectory.value / ".." / "shared" / "src" / "main" / "scala-2.11+")
4646
case _ =>
4747
Seq()
4848
}

0 commit comments

Comments
 (0)