From f7fe365ed1490e646c6e0595dae052a84e125ed2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 29 Aug 2025 17:45:24 -0500 Subject: [PATCH] path overrides --- clone.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clone.go b/clone.go index a1bee27..04facf2 100644 --- a/clone.go +++ b/clone.go @@ -101,6 +101,12 @@ func overridePath(gopath string) string { if strings.HasPrefix(gopath, "github.com/go-gl/glfw") { return "https://github.com/go-gl/glfw" } + if strings.HasPrefix(gopath, "cloud.google.com/go") { + return "https://github.com/googleapis/google-cloud-go" + } + if strings.HasPrefix(gopath, "go.opentelemetry.io/contrib") { + return "https://github.com/open-telemetry/opentelemetry-go-contrib" + } return "" }