Re-enable TLS for Red

It was disabled due to a misunderstanding.
This commit is contained in:
Radon Rosborough 2021-02-07 09:51:34 -08:00
parent 9a548bb95f
commit 89e3b3f488
2 changed files with 4 additions and 4 deletions

View File

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

View File

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