aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFujii Hironori <fujii.hironori@gmail.com>2018-02-16 21:25:12 +0900
committerRobert Schumacher <roschuma@microsoft.com>2018-02-16 04:25:12 -0800
commitbfac7b57161168b8b54ea159bbf2c88794098c1c (patch)
treee155e75a88fb8469a10645daa3b0d02fc692d64e
parentd5cb490fc02b9b0c26d869fabf3b37158586236f (diff)
downloadvcpkg-bfac7b57161168b8b54ea159bbf2c88794098c1c.tar.gz
vcpkg-bfac7b57161168b8b54ea159bbf2c88794098c1c.zip
[vcpkg] http_proxy and https_proxy should be lowercase (#2815)
Pacman of Msys understands only lowercase environment variables http_proxy and https_proxy.
-rw-r--r--toolsrc/src/vcpkg/base/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg/base/system.cpp b/toolsrc/src/vcpkg/base/system.cpp
index 84721bf6e..f71fd8445 100644
--- a/toolsrc/src/vcpkg/base/system.cpp
+++ b/toolsrc/src/vcpkg/base/system.cpp
@@ -175,8 +175,8 @@ namespace vcpkg::System
L"USERPROFILE",
L"windir",
// Enables proxy information to be passed to Curl, the underlying download library in cmake.exe
- L"HTTP_PROXY",
- L"HTTPS_PROXY",
+ L"http_proxy",
+ L"https_proxy",
// Enables find_package(CUDA) in CMake
L"CUDA_PATH",
// Environmental variable generated automatically by CUDA after installation