Skip to content

Commit

Permalink
Include Helm chart name in push error
Browse files Browse the repository at this point in the history
  • Loading branch information
abhay-krishna committed Jun 27, 2024
1 parent 5a794dd commit db945e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/cli/pkg/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func PushHelmChart(packaged, URI string) error {
fmt.Println(out)

if err != nil {
return fmt.Errorf("running Helm push command on URI %s: %v", URI, err)
return fmt.Errorf("running Helm push command on chart %s with destination URI %s: %v", packaged, URI, err)
}
return nil
}
Expand Down

0 comments on commit db945e4

Please sign in to comment.