You are not logged in.
Alright this is a really strange issue to me, on my Desktop running Arch I can not download AOSP. The `repo init -u ...` command just sits there for about an hour before timing out. However the same command on a Debian 10 virtual machine works just fine.
I am using the latest version of repo with the shebang edited to make it use python 2 instead of python 3.
Any ideas what the difference might be that is causing this issue?
Is there a way that I could just make the Debian VM use my local filesystem for repo commands? (libvirt/qemu)
Offline
The curl version in arch by default tries http/2. The server accepts that, but curl doesn't like something the server is doing. I don't know if that is a server or curl bug.
As a fix/workaround, you can disable http/2 for git
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
The curl version in arch by default tries http/2. The server accepts that, but curl doesn't like something the server is doing. I don't know if that is a server or curl bug.
As a fix/workaround, you can disable http/2 for git
Thank you so much!
Considering CURL is used all over the place and is open source, it is likely some weird bug on Google's servers. Especially since most people probably use Debian based systems.
Offline