Skip to content
This repository has been archived by the owner on Apr 23, 2022. It is now read-only.

Uses HTTPS Protocol for Scala SBT Typesafe JAR URL #152

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion circleci-provision-scripts/scala.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down