Skip to content

Commit 7cb63a5

Browse files
zsxwingallisonport-db
authored andcommitted
[DELTA-OSS-EXTERNAL] Fix the sbt launch download url
The bintray url is not working now. Use the `repo.typesafe.com` link instead. Closes #711 Signed-off-by: Shixiong Zhu <[email protected]> Author: Shixiong Zhu <[email protected]> #24449 is resolved by zsxwing/den3b8hd. GitOrigin-RevId: 1f8fdb3bba694ff53001d13ebca9f84dfae0748e (cherry picked from commit 86bbe99)
1 parent 3082c07 commit 7cb63a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/sbt-launch-lib.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ acquire_sbt_jar () {
4242
if [[ "${SBT_VERSION}" == "0.13.18" ]] && [[ -n "${SBT_MIRROR_JAR_URL}" ]]; then
4343
URL1="${SBT_MIRROR_JAR_URL}"
4444
else
45-
URL1="https://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar"
45+
URL1="https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar"
4646
fi
4747
JAR=build/sbt-launch-${SBT_VERSION}.jar
4848

examples/scala/build/sbt-launch-lib.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dlog () {
3838

3939
acquire_sbt_jar () {
4040
SBT_VERSION=`awk -F "=" '/sbt\.version/ {print $2}' ./project/build.properties`
41-
URL1=https://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
41+
URL1=https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
4242
JAR=build/sbt-launch-${SBT_VERSION}.jar
4343

4444
sbt_jar=$JAR

0 commit comments

Comments
 (0)