Skip to content

Commit deb987f

Browse files
committed
Fix dottyLatestNightlyBuild following scala3 renaming
The regexp was too specific. Also restore the shapeless build before its use of dottyLatestNightlyBuild was disabled in #10021
1 parent b7359f6 commit deb987f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object DottyPlugin extends AutoPlugin {
4949
else fetchSource(s"$major.${minor.toInt - 1}")
5050
}
5151
val (source1, majorVersion) = fetchSource(majorVersionFromWebsite)
52-
val Version = s" <version>($majorVersion\\..*-bin.*)</version>".r
52+
val Version = s" <version>($majorVersion.*-bin.*)</version>".r
5353
val nightly = source1
5454
.getLines()
5555
.collect { case Version(version) => version }

0 commit comments

Comments
 (0)