File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sbt-dotty/src/dotty/tools/sbtplugin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ object DottyPlugin extends AutoPlugin {
93
93
val name = moduleID.name
94
94
if (name != " dotty" && name != " dotty-library" && name != " dotty-compiler" )
95
95
moduleID.crossVersion match {
96
- case _ : librarymanagement.Binary =>
96
+ case binary : librarymanagement.Binary =>
97
97
val compatVersion =
98
98
CrossVersion .partialVersion(scalaVersion) match {
99
99
case Some ((3 , _)) =>
@@ -107,7 +107,7 @@ object DottyPlugin extends AutoPlugin {
107
107
" "
108
108
}
109
109
if (compatVersion.nonEmpty)
110
- moduleID.cross(CrossVersion .constant(compatVersion))
110
+ moduleID.cross(CrossVersion .constant(binary.prefix + compatVersion + binary.suffix ))
111
111
else
112
112
moduleID
113
113
case _ =>
You can’t perform that action at this time.
0 commit comments