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 c0004f6 commit 861f72aCopy full SHA for 861f72a
community-build/src/scala/dotty/communitybuild/projects.scala
@@ -7,13 +7,13 @@ import java.nio.charset.StandardCharsets.UTF_8
7
lazy val communitybuildDir: Path = Paths.get(sys.props("user.dir"))
8
9
lazy val compilerVersion: String =
10
- val file = communitybuildDir.resolve("dotty-bootstrapped.version")
+ val file = communitybuildDir.resolve("scala3-bootstrapped.version")
11
new String(Files.readAllBytes(file), UTF_8)
12
13
lazy val sbtPluginFilePath: String =
14
// Workaround for https://github.com/sbt/sbt/issues/4395
15
new File(sys.props("user.home") + "/.sbt/1.0/plugins").mkdirs()
16
- communitybuildDir.resolve("sbt-dotty-sbt").toAbsolutePath().toString()
+ communitybuildDir.resolve("sbt-scala3-sbt").toAbsolutePath().toString()
17
18
def log(msg: String) = println(Console.GREEN + msg + Console.RESET)
19
0 commit comments