diff --git a/cmd/helm/install.go b/cmd/helm/install.go index a6d8a1777..401611935 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -260,6 +260,12 @@ func (i *installCmd) run() error { if err := man.Update(); err != nil { return prettyError(err) } + + // Update all dependencies which are present in /charts. + chartRequested, err = chartutil.Load(i.chartPath) + if err != nil { + return prettyError(err) + } } else { return prettyError(err) }