use lowercase letter for error message in getOciURI func

Signed-off-by: James Sheppard <jgsheppa@protonmail.com>
pull/12063/head
James Sheppard 2 years ago
parent 6d08340987
commit 41e6c6f27c

@ -156,7 +156,7 @@ func (c *ChartDownloader) getOciURI(ref, version string, u *url.URL) (*url.URL,
return nil, err
}
if len(tags) == 0 {
return nil, fmt.Errorf("Unable to locate any tags in provided repository: %s", ref)
return nil, fmt.Errorf("unable to locate any tags in provided repository: %s", ref)
}
// Determine if version provided

Loading…
Cancel
Save