Skip to content

Commit

Permalink
[DELTA-OSS-EXTERNAL] Fix the sbt launch download url
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
zsxwing authored and allisonport-db committed Feb 4, 2022
1 parent 3082c07 commit 7cb63a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/sbt-launch-lib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ acquire_sbt_jar () {
if [[ "${SBT_VERSION}" == "0.13.18" ]] && [[ -n "${SBT_MIRROR_JAR_URL}" ]]; then
URL1="${SBT_MIRROR_JAR_URL}"
else
URL1="https://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar"
URL1="https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar"
fi
JAR=build/sbt-launch-${SBT_VERSION}.jar

Expand Down
2 changes: 1 addition & 1 deletion examples/scala/build/sbt-launch-lib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dlog () {

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

sbt_jar=$JAR
Expand Down

0 comments on commit 7cb63a5

Please sign in to comment.