Update pkg/cmd/dependency_build.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Mads Jensen <mje@inducks.org>
pull/31667/head
Mads Jensen 4 months ago committed by GitHub
parent 28ffefcedf
commit e7a7b9220a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -79,7 +79,7 @@ func newDependencyBuildCmd(out io.Writer) *cobra.Command {
err = man.Build()
var e downloader.ErrRepoNotFound
if errors.As(err, &e) {
return fmt.Errorf("%s. Please add the missing repos via 'helm repo add'", repoNotFoundError.Error())
return fmt.Errorf("%s. Please add the missing repos via 'helm repo add'", e.Error())
}
return err
},

Loading…
Cancel
Save