Skip to content

Commit

Permalink
fix(helm): don't pass nil-opt to ReleaseContent
Browse files Browse the repository at this point in the history
  • Loading branch information
rollulus authored and technosophos committed Nov 22, 2016
1 parent 51bdad4 commit a29b225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/helm/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (h *Client) DeleteRelease(rlsName string, opts ...DeleteOption) (*rls.Unins

if h.opts.dryRun {
// In the dry run case, just see if the release exists
r, err := h.ReleaseContent(rlsName, nil)
r, err := h.ReleaseContent(rlsName)
if err != nil {
return &rls.UninstallReleaseResponse{}, err
}
Expand Down

0 comments on commit a29b225

Please sign in to comment.