From 63df16728cd5649b801f8cdcdf06cc76bfb5e450 Mon Sep 17 00:00:00 2001 From: iphydf Date: Sat, 25 Mar 2017 15:41:55 +0000 Subject: [PATCH] Fix appveyor script: install curl. It should exist according to https://www.appveyor.com/docs/how-to/download-file/, but in reality it doesn't, so we install it manually. --- appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 8c351236..ec90e428 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,8 @@ install: +# TODO(iphydf): Remove this when appveyor gets curl back, which it should have +# according to https://www.appveyor.com/docs/how-to/download-file/. +- choco install curl +- refreshenv - mkdir libsodium && cd libsodium - curl https://download.libsodium.org/libsodium/releases/libsodium-1.0.11-msvc.zip -o libsodium.zip - unzip libsodium.zip