Switch to HTTPS for D, yay!

This commit is contained in:
Radon Rosborough 2021-01-24 21:22:01 -08:00
parent 98612d6bcc
commit 2566fcb6c5
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ name: "D"
install:
prepare:
manual: |
file="$(curl -fsSL https://dlang.org/download.html | grep -Eo '"http://[^"]+amd64.deb"' | grep -v pre-release | tr -d '"')"
file="$(curl -fsSL https://dlang.org/download.html | grep -Eo '"https://[^"]+amd64.deb"' | grep -v pre-release | tr -d '"')"
wget "${file}" -O dmd.deb
sudo apt-get install -y ./dmd.deb
manual: |