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.
2 parents e2e77b5 + dc79439 commit af0de81Copy full SHA for af0de81
project/Build.scala
@@ -123,7 +123,11 @@ object Build {
123
else
124
baseVersion + "-bin-SNAPSHOT"
125
}
126
- val dottyNonBootstrappedVersion = dottyVersion + "-nonbootstrapped"
+ val dottyNonBootstrappedVersion = {
127
+ // Make sure sbt always computes the scalaBinaryVersion correctly
128
+ val bin = if (!dottyVersion.contains("-bin")) "-bin" else ""
129
+ dottyVersion + bin + "-nonbootstrapped"
130
+ }
131
132
val sbtCommunityBuildVersion = "0.1.0-SNAPSHOT"
133
0 commit comments