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.
*
git_source
1 parent a8fa1a7 commit 4ef8ff9Copy full SHA for 4ef8ff9
go/extractor/util/registryproxy.go
@@ -103,7 +103,11 @@ func getEnvVars() []string {
103
goproxy_servers = append(goproxy_servers, cfg.URL)
104
slog.Info("Found GOPROXY server", slog.String("url", cfg.URL))
105
} else if cfg.Type == GIT_SOURCE {
106
- git_sources = append(git_sources, cfg.URL)
+ if strings.HasSuffix(cfg.URL, "*") {
107
+ git_sources = append(git_sources, cfg.URL)
108
+ } else {
109
+ git_sources = append(git_sources, cfg.URL+"*")
110
+ }
111
slog.Info("Found Git source", slog.String("url", cfg.URL))
112
}
113
0 commit comments