From 65c5403b6fe1df74aacb521463386cdad1908ede Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Wed, 13 Jan 2021 17:00:57 -0800 Subject: [PATCH] Use http for now for Red There seems to be a problem specific to my laptop's kernel or network stack that causes an SSL error. --- langs/red.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/langs/red.yaml b/langs/red.yaml index 8afe8ab..7f90f7b 100644 --- a/langs/red.yaml +++ b/langs/red.yaml @@ -8,8 +8,8 @@ install: install -d "${pkg}/opt/red/skel" install -d "${pkg}/usr/local/bin" - path="$(curl -sSL https://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" - wget "https://static.red-lang.org/${path}" -O red + path="$(curl -fsSL http://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" + wget "http://static.red-lang.org/${path}" -O red chmod +x red cp red "${pkg}/usr/local/bin/"