Skip to content

Commit f4029f7

Browse files
committed
Fix Scala download links
1 parent 2794500 commit f4029f7

File tree

1 file changed

+2
-2
lines changed
  • cli/src/sbt-test/integration/standalone

1 file changed

+2
-2
lines changed

cli/src/sbt-test/integration/standalone/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ runScript := {
4747
if (!scalaBinDir.exists) {
4848
val downloadUrl =
4949
if (ver.startsWith("3."))
50-
s"https://github.com/lampepfl/dotty/releases/download/$ver/$scalaDir.zip"
50+
s"https://github.com/scala/scala3/releases/download/$ver/$scalaDir.zip"
5151
else
52-
s"https://downloads.lightbend.com/scala/${ver}/$scalaDir.zip"
52+
s"https://github.com/scala/scala/releases/download/scala/v$ver/$scalaDir.zip"
5353
IO.unzipURL(url(downloadUrl), cacheDir)
5454
}
5555
// Make sure we can execute scala/scalac from downloaded distro

0 commit comments

Comments
 (0)