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.
This commit is contained in:
Radon Rosborough 2021-01-13 17:00:57 -08:00
parent b9eaccfc66
commit 65c5403b6f
1 changed files with 2 additions and 2 deletions

View File

@ -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/"