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 352c09e commit 4035706Copy full SHA for 4035706
sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala
@@ -95,7 +95,7 @@ object DottyPlugin extends AutoPlugin {
95
96
scalaBinaryVersion := {
97
if (isDotty.value)
98
- "0.1" // TODO: Fix sbt so that this isn't needed
+ scalaVersion.value.split("\\.").take(2).mkString(".") // Not needed with sbt >= 0.13.16
99
else
100
scalaBinaryVersion.value
101
}
0 commit comments