git/git.go: uppercase URL in message

We convert a log message to use the uppercase acronym
"URL" instead of the lowercase variant.

Note that this message is not yet passed as a translation
string, but we will address that issue in a subsequent commit.
This commit is contained in:
Chris Darroch 2022-01-29 12:09:33 -08:00
parent 9dc5afb405
commit 7b3b188bdc

@ -545,7 +545,7 @@ func ValidateRemoteURL(remote string) error {
case "ssh", "http", "https", "git", "file": case "ssh", "http", "https", "git", "file":
return nil return nil
default: default:
return fmt.Errorf("invalid remote url protocol %q in %q", u.Scheme, remote) return fmt.Errorf("invalid remote URL protocol %q in %q", u.Scheme, remote)
} }
} }