We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f1bb5 commit 86edabcCopy full SHA for 86edabc
devolv/iam/validator/cli.py
@@ -29,7 +29,7 @@ def validate(
29
raise Exit(code=0)
30
for finding in findings:
31
typer.secho(f"❌ {finding['level'].upper()}: {finding['message']}", fg=typer.colors.RED)
32
- if any(f["level"] == "error" for f in findings):
+ if any(f["level"] in ("error", "high") for f in findings):
33
raise Exit(code=1)
34
35
0 commit comments