Skip to content

Commit c373206

Browse files
authored
Fix vcpkg_install.bat (git-for-windows#6298)
While researching a build failure in `shears/seen`, I noticed that the `vcpkg` Pipeline [has been broken since August last year](https://dev.azure.com/git/git/_build?definitionId=9&_a=summary) 🤦. The reason is that the `schannel` feature of `curl` was removed, as part of microsoft/vcpkg#46459. This PR did not remove _Secure Channel support_, it merely removed the ability to specify it _as a feature_. Let's accommodate for that.
2 parents 7bdfd4f + f8de6ca commit c373206

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

compat/vcbuild/vcpkg_install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ set features=
127127
goto :EOF
128128

129129
:curl_features
130-
set features=[core,openssl,schannel]
130+
set features=[core,ssl]
131131
goto :EOF

0 commit comments

Comments
 (0)