fix(helm): fix broken --values flag

This fixes the 'helm upgrade --values', which I broke when fixing
'--set'.

Closes #1631
parent ec04da19
......@@ -171,7 +171,7 @@ func (u *upgradeCmd) vals() ([]byte, error) {
return []byte{}, err
}
if err := yaml.Unmarshal(bytes, base); err != nil {
if err := yaml.Unmarshal(bytes, &base); err != nil {
return []byte{}, fmt.Errorf("failed to parse %s: %s", u.valuesFile, err)
}
}
......
Markdown is supported
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