fix(helm): fix broken --values flag

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

Closes #1631
pull/1633/head
Matt Butcher 8 years ago
parent ec04da196d
commit cba094f352
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

@ -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)
}
}

Loading…
Cancel
Save