-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
curl.exe is not on PATH #1426
Comments
Would it be possible to copy it back? Even when I say it, I know it sounds pretty hacky. Just thinking of the best way to fix things quickly given this change. |
Yes, we are going to fix that by adding |
Out of curiosity is there anything else of note in that directory? |
Thanks. There are a few things that could clash. Though we make sure are stuff is searched first. So I don't think it will be an issue. |
Does curl.exe depend on some other libs/dlls or it's standalone exe? Maybe we could just copy it somewhere under |
From my notes, it could be linked to zlib. |
This is really unhelpful! Can't you make updates to the system images be manual, so that we can deal with changes at a convenient time? |
Thanks for the quick updates! The suggested workaround had me up and running again in a few minutes. |
We're going to have |
Workaround from appveyor/ci#1426 Will be superceded by appveyor/ci#1431
Previous versions of Git had
curl.exe
inC:\Program Files\Git\usr\bin
folder which is added inPATH
on build workers. The main reason it was on PATH wasssh.exe
utility Git (and Mercurial) required to fetch repo via SSH.Now,
curl.exe
has gone fromC:\Program Files\Git\usr\bin
and left inC:\Program Files\Git\mingw64\bin
only. To fix the build add this to yourappveyor.yml
:Alternatively, CURL can be installed via Chocolatey with
choco install curl
command or used from other locations such as MinGW, Cygwin and MSYS: https://www.appveyor.com/docs/build-environment/#mingw-msys-cygwin, for example:C:\msys64\usr\bin
C:\cygwin\bin
We are not yet completely sure whether we should explicitly add
C:\Program Files\Git\mingw64\bin
folder into PATH on build workers or not - there is always a risk of causing another conflict. Less stuff on PATH is better.The text was updated successfully, but these errors were encountered: