aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-08-13 20:59:34 -0700
committerGitHub <[email protected]>2017-08-13 20:59:34 -0700
commit8bde3af884ff2ddba589233a23b624b220d8a645 (patch)
treec6d47b84bed6bac51106f6d13bb36008726a7f10
parentUpdate README.md (diff)
parentavoid interactive prompts when setting up vcpkg in appveyor (diff)
downloadrust-openssl-8bde3af884ff2ddba589233a23b624b220d8a645.tar.xz
rust-openssl-8bde3af884ff2ddba589233a23b624b220d8a645.zip
Merge pull request #679 from mcgoo/vcpkg
avoid interactive prompts when setting up vcpkg in appveyor
-rw-r--r--appveyor.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 4fa391ef..d9ba7558 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -40,6 +40,7 @@ install:
- if defined VCPKG_DEFAULT_TRIPLET git clone https://github.com/Microsoft/vcpkg c:\projects\vcpkg
- if defined VCPKG_DEFAULT_TRIPLET c:\projects\vcpkg\bootstrap-vcpkg.bat
- if defined VCPKG_DEFAULT_TRIPLET set VCPKG_ROOT=c:\projects\vcpkg
+ - if defined VCPKG_DEFAULT_TRIPLET echo yes > %VCPKG_ROOT%\Downloads\AlwaysAllowDownloads
- if defined VCPKG_DEFAULT_TRIPLET %VCPKG_ROOT%\vcpkg.exe install openssl
build: false