| 8 | ) |
| 9 | |
| 10 | type InvalidRepoURLError struct { |
| 11 | repoURL string |
| 12 | inner error |
| 13 | } |
| 14 | |
| 15 | func (e *InvalidRepoURLError) Error() string { |
| 16 | return fmt.Sprintf("invalid repository URL %q, please see https://github.com/coder/envbuilder/blob/main/docs/git-auth.md for supported formats: %v", e.repoURL, e.inner) |
nothing calls this directly
no outgoing calls
no test coverage detected