Closed teka23 closed 4 years ago
resolves https://github.com/CircleCI-Public/android-orb/issues/7
curl is having HTTP2 framing layer error, most likely due to https://github.com/curl/curl/issues/3750 and https://github.com/curl/curl/issues/4267. Since it is having an error when using HTTP2, we should force HTTP1.1 when downloading.
Another option is to use wget, but wget is not usually installed by default in Linux distributions.
wget
Looking into the failing job.
resolves https://github.com/CircleCI-Public/android-orb/issues/7
Motivation, issues
curl is having HTTP2 framing layer error, most likely due to https://github.com/curl/curl/issues/3750 and https://github.com/curl/curl/issues/4267. Since it is having an error when using HTTP2, we should force HTTP1.1 when downloading.
Another option is to use
wget
, butwget
is not usually installed by default in Linux distributions.Description