Update comment

Signed-off-by: Lucas Rodriguez <lucas.rodriguez9616@gmail.com>
pull/11943/head
Lucas Rodriguez 3 years ago
parent 0dec173339
commit cb30ad45e7
No known key found for this signature in database
GPG Key ID: CE56FC1BEBE7E813

@ -157,7 +157,7 @@ func (m *Manager) Update() error {
req := c.Metadata.Dependencies req := c.Metadata.Dependencies
// The nil check determines whether the 'dependencies:' key exists in a Chart.yaml. // The nil check determines whether the 'dependencies:' key exists in a Chart.yaml.
// The len(chartDeps) < 1 check determines whether the 'dependencies' key is empty in a Chart.yaml. // The len(req) < 1 check determines whether the 'dependencies' key is empty in a Chart.yaml.
if req == nil || len(req) < 1 { if req == nil || len(req) < 1 {
fmt.Fprintln(m.Out, "No chart dependencies found") fmt.Fprintln(m.Out, "No chart dependencies found")
} }

Loading…
Cancel
Save