We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a1553 commit 6c30d0cCopy full SHA for 6c30d0c
go-runner/src/builder/patcher.rs
@@ -34,6 +34,9 @@ pub fn patch_imports<P: AsRef<Path>>(
34
let mut cmd: Command = Command::new("go");
35
cmd.arg("get")
36
.arg("github.com/CodSpeedHQ/codspeed-go@cod-1172-create-codspeed-go-repository-with-the-compat-layer")
37
+ // Bypass Go proxy cache to fetch directly from source - prevents issues with
38
+ // cached versions that may have incorrect module paths or outdated content
39
+ .env("GOPROXY", "direct")
40
.current_dir(folder);
41
42
let output = cmd.output().context("Failed to execute 'go get' command")?;
0 commit comments