Merge pull request #6628 from VilledeMontreal/fix/impossibleCond

Remove impossible condition reported by linter
pull/6641/head
Matthew Fisher 5 years ago committed by GitHub
commit 0141f9c806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -45,9 +45,6 @@ func Expand(dir string, r io.Reader) error {
if err := yaml.Unmarshal(file.Data, ch); err != nil {
return errors.Wrap(err, "cannot load Chart.yaml")
}
if err != nil {
return err
}
chartName = ch.Name
}
}

Loading…
Cancel
Save