Re-enable TLS for Red
It was disabled due to a misunderstanding.
This commit is contained in:
parent
9a548bb95f
commit
89e3b3f488
|
@ -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/"
|
||||
```
|
||||
|
|
|
@ -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/"
|
||||
|
||||
|
|
Loading…
Reference in New Issue