Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! Add support for GOPROXY env var
Browse files Browse the repository at this point in the history
  • Loading branch information
icholy committed Jul 9, 2024
1 parent fb38ce7 commit bb8d0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/modproxy/modproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func Proxies() []string {
for _, proxy := range strings.Split(s, ",") {
proxy = strings.TrimSpace(proxy)
if proxy != "direct" {
proxies = append(proxies)
proxies = append(proxies, proxy)
}
}
}
Expand Down

0 comments on commit bb8d0ad

Please sign in to comment.