()
| 321 | } |
| 322 | |
| 323 | func (e *noReleasesError) Error() string { return e.reason } |
| 324 | |
| 325 | func resolveLatestRelease(client *api.Client, host, owner, repo string) (*ResolvedRef, error) { |
| 326 | apiPath := fmt.Sprintf("repos/%s/%s/releases/latest", url.PathEscape(owner), url.PathEscape(repo)) |
no outgoing calls