Commit 4bc0f816 authored by José Armesto's avatar José Armesto

Remove trailing slash when comparing dependency url with repo url

parent c340c04e
...@@ -226,7 +226,7 @@ func (m *Manager) hasAllRepos(deps []*chartutil.Dependency) error { ...@@ -226,7 +226,7 @@ func (m *Manager) hasAllRepos(deps []*chartutil.Dependency) error {
found = true found = true
} else { } else {
for _, repo := range repos { for _, repo := range repos {
if urlsAreEqual(repo.URL, dd.Repository) { if urlsAreEqual(repo.URL, strings.TrimSuffix(dd.Repository, "/")) {
found = true found = true
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment