Skip to content

Commit

Permalink
Use https for arch sources (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
fundies committed Mar 29, 2020
1 parent fc01197 commit 0e79dde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-jobs.yml
Expand Up @@ -236,9 +236,9 @@ jobs:
- bash: |
set -e
cd $(Build.BinariesDirectory)
ARCH_URL=`curl -s http://mirrors.acm.wpi.edu/archlinux/iso/latest/ | egrep -o 'archlinux-bootstrap-([0-9._]+)-x86_64.tar.gz' | head -n1`
echo http://mirrors.acm.wpi.edu/archlinux/iso/latest/$ARCH_URL
curl http://mirrors.acm.wpi.edu/archlinux/iso/latest/$ARCH_URL -o arch.tar.gz
ARCH_URL=`curl -s https://mirrors.acm.wpi.edu/archlinux/iso/latest/ | egrep -o 'archlinux-bootstrap-([0-9._]+)-x86_64.tar.gz' | head -n1`
echo https://mirrors.acm.wpi.edu/archlinux/iso/latest/$ARCH_URL
curl https://mirrors.acm.wpi.edu/archlinux/iso/latest/$ARCH_URL -o arch.tar.gz
sudo tar xzf arch.tar.gz
sudo mount --bind ./root.x86_64/ ./root.x86_64/
sudo cp -R $(Agent.BuildDirectory)/RadialGM ./root.x86_64/
Expand Down

0 comments on commit 0e79dde

Please sign in to comment.