Zig Version
0.15.2 brew, the latest
Steps to Reproduce and Observed Behavior
Just use zig build in any Zig project that requires remote packages.
Expected Behavior
Just use zig build for any
build.zig.zon:8:20: error: unable to discover remote git server capabilities: HttpConnectionClosing
.url = "git+https://github.com/Hejsil/zig-clap.git#5289e0753cd274d65344bef1c114284c633536ea",
I tried to remove https and use http
build.zig.zon:8:20: error: unable to discover remote git server capabilities: HttpConnectionClosing
.url = "git+http://github.com/Hejsil/zig-clap.git#5289e0753cd274d65344bef1c114284c633536ea",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Still not working. This problem has actually existed for a long time, present since the early versions of the package manager. This is also one of the reasons blocking me from learning Zig. I've been trying to solve it, but haven't found a solution. It seems Zig will never use a proxy channel...
Zig Version
0.15.2 brew, the latest
Steps to Reproduce and Observed Behavior
Just use
zig buildin any Zig project that requires remote packages.Expected Behavior
Just use
zig buildfor anybuild.zig.zon:8:20: error: unable to discover remote git server capabilities: HttpConnectionClosing .url = "git+https://github.com/Hejsil/zig-clap.git#5289e0753cd274d65344bef1c114284c633536ea",I tried to remove https and use http
build.zig.zon:8:20: error: unable to discover remote git server capabilities: HttpConnectionClosing .url = "git+http://github.com/Hejsil/zig-clap.git#5289e0753cd274d65344bef1c114284c633536ea", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Still not working. This problem has actually existed for a long time, present since the early versions of the package manager. This is also one of the reasons blocking me from learning Zig. I've been trying to solve it, but haven't found a solution. It seems Zig will never use a proxy channel...