Skip to content

Commit 361a9bd

Browse files
authored
Merge pull request #254 from lol768/fix/https-downloads
Use HTTPS in fullUrl by default for resources
2 parents 75b24ae + 8842e6a commit 361a9bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/MakeDownloadPage.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class MakeDownloadPage(version: String, releaseDate: Date = new Date()) {
3737

3838
def resourceArchive(cls: String, name: String, ext: String, desc: String): Future[String] = {
3939
val fileName = s"$name-$version.$ext"
40-
val fullUrl = s"http://downloads.lightbend.com/scala/$version/$fileName"
40+
val fullUrl = s"https://downloads.lightbend.com/scala/$version/$fileName"
4141
resource(cls, fileName, desc, fullUrl, fullUrl)
4242
}
4343

0 commit comments

Comments
 (0)