Skip to content

Commit

Permalink
fix(helm): return correct version on dep up
Browse files Browse the repository at this point in the history
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
  • Loading branch information
technosophos committed Oct 17, 2016
1 parent bb2511a commit 84544bc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cmd/helm/downloader/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 84544bc

Please sign in to comment.