Skip to content

Commit

Permalink
fix quiet lint does not fail on non-linting errors
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Julian <me@joejulian.name>
  • Loading branch information
joejulian committed Apr 10, 2023
1 parent f13fa07 commit 853c180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/action/lint.go
Expand Up @@ -82,7 +82,7 @@ func HasWarningsOrErrors(result *LintResult) bool {
return true
}
}
return false
return len(result.Errors) > 0
}

func lintChart(path string, vals map[string]interface{}, namespace string, strict bool) (support.Linter, error) {
Expand Down

0 comments on commit 853c180

Please sign in to comment.