From 89d9364cd973fe8b0bf40ac31c7d5195aaa7f353 Mon Sep 17 00:00:00 2001 From: Thanabodee Charoenpiriyakij Date: Tue, 19 Oct 2021 15:23:18 +0700 Subject: [PATCH] erlang@24.1.2: fix installation error (#2765) Currently, when installing erlang, scoop will return error because of url return HTTP status 503. This happens because of erlang switch the url to use https instead of http. --- bucket/erlang.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bucket/erlang.json b/bucket/erlang.json index f8774dc8ad..e6eaf39ef7 100644 --- a/bucket/erlang.json +++ b/bucket/erlang.json @@ -8,11 +8,11 @@ }, "architecture": { "64bit": { - "url": "http://erlang.org/download/otp_win64_24.1.2.exe#/dl.7z", + "url": "https://erlang.org/download/otp_win64_24.1.2.exe#/dl.7z", "hash": "045ead7fa4aafa41a791f08e87da5acb816891f404fd518adb926209b7750ef3" }, "32bit": { - "url": "http://erlang.org/download/otp_win32_24.1.2.exe#/dl.7z", + "url": "https://erlang.org/download/otp_win32_24.1.2.exe#/dl.7z", "hash": "7488c187d47c79ffc2d8fd5e79992dbbb02d290cc6edf88ce13b85a3003fe7fe" } }, @@ -43,10 +43,10 @@ "autoupdate": { "architecture": { "64bit": { - "url": "http://erlang.org/download/otp_win64_$version.exe#/dl.7z" + "url": "https://erlang.org/download/otp_win64_$version.exe#/dl.7z" }, "32bit": { - "url": "http://erlang.org/download/otp_win32_$version.exe#/dl.7z" + "url": "https://erlang.org/download/otp_win32_$version.exe#/dl.7z" } } }