fix(helm): return correct version on dep up

There was an extra return statement in a helper that was causing
the download manager to get a false positive on a release version.

Closes #1383
pull/1384/head
Matt Butcher 8 years ago
parent bb2511a41b
commit 84544bca57

@ -333,8 +333,6 @@ func findVersionedEntry(version string, vers repo.ChartVersions) (*repo.ChartVer
if version == "" || versionEquals(version, verEntry.Version) {
return verEntry, nil
}
return verEntry, nil
}
return nil, errors.New("no matching version")
}

Loading…
Cancel
Save