From 89e3b3f488552a26c749db5a79a5996fd72392d8 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sun, 7 Feb 2021 09:51:34 -0800 Subject: [PATCH] Re-enable TLS for Red It was disabled due to a misunderstanding. --- doc/tutorial/install.md | 4 ++-- langs/red.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/install.md b/doc/tutorial/install.md index 1184ff1..07ae98d 100644 --- a/doc/tutorial/install.md +++ b/doc/tutorial/install.md @@ -75,8 +75,8 @@ install: manual: | install -d "${pkg}/usr/local/bin" - 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 + path="$(curl -fsSL https://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" + wget "https://static.red-lang.org${path}" -O red chmod +x red cp red "${pkg}/usr/local/bin/" ``` diff --git a/langs/red.yaml b/langs/red.yaml index ea895be..86f82a0 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 -fsSL http://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" - wget "http://static.red-lang.org${path}" -O red + path="$(curl -fsSL https://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" + wget "https://static.red-lang.org${path}" -O red chmod +x red cp red "${pkg}/usr/local/bin/"