Unverified Commit 853c1800 authored by Joe Julian's avatar Joe Julian
Browse files

fix quiet lint does not fail on non-linting errors


Signed-off-by: default avatarJoe Julian <me@joejulian.name>
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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) {
......
Supports Markdown
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