Unverified Commit f3f4f065 authored by Matt Butcher's avatar Matt Butcher
Browse files

fix(helm): fix nil pointer in requirements.go

This fixes a segfault that was the result of assigning to a property of
a nil pointer.

Closes #2244
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -384,8 +384,9 @@ func processImportValues(c *chart.Chart, v *chart.Config) error {
if err != nil {
return err
}
// set the new values
c.Values.Raw = string(y)
c.Values = &chart.Config{Raw: string(y)}
return nil
}
......
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