Unverified Commit a29b2250 authored by Rollulus's avatar Rollulus Committed by Matt Butcher
Browse files

fix(helm): don't pass nil-opt to ReleaseContent

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment