From 52abfd877eceb659681806241d04ca62ec7d441f Mon Sep 17 00:00:00 2001 From: Tim Daniels Date: Thu, 6 Aug 2020 13:15:05 -0700 Subject: [PATCH] Uses HTTPS Protocol for Scala SBT Typesafe JAR URL HTTP connections are now being refused by repo.typesafe.com. This PR updates the SBT_URL to use HTTPS. --- circleci-provision-scripts/scala.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circleci-provision-scripts/scala.sh b/circleci-provision-scripts/scala.sh index 61f3bc1..5d3f47d 100755 --- a/circleci-provision-scripts/scala.sh +++ b/circleci-provision-scripts/scala.sh @@ -12,7 +12,7 @@ for VER in $(echo $SBT_LAUNCH_VERSIONS); do SBT_DIR=~/.sbt/.lib/${VER} SBT_JAR=$SBT_DIR/sbt-launch.jar -SBT_URL="http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${VER}/sbt-launch.jar" +SBT_URL="https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${VER}/sbt-launch.jar" mkdir -p $SBT_DIR curl -L -o $SBT_JAR $SBT_URL