diff --git a/download/proxy.go b/download/proxy.go index 76f1024..22b52b4 100644 --- a/download/proxy.go +++ b/download/proxy.go @@ -64,7 +64,7 @@ func (c *ProxyClient) ModuleName(path string) (string, error) { } if resp.StatusCode != http.StatusOK { - return "", fmt.Errorf("could not get latest module version from %s: %s", u, string(b)) + return "", fmt.Errorf("could not get module name from %s: %s", u, string(b)) } sp := strings.Split(string(b), "\n")