Skip to content

Commit 6026358

Browse files
authored
Merge pull request #73 from jackd66871/71-backend-error-reporting
Fixed Multiple Backend Error Reporting
2 parents 807e00d + 2db2f61 commit 6026358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sigma/cli/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,4 @@ def convert(
346346
if len(backend.errors) > 0:
347347
click.echo("\nIgnored errors:", err=True)
348348
for rule, error in backend.errors:
349-
raise click.ClickException(f"{str(rule.source)}: {str(error)}")
349+
click.echo(f"{str(rule.source)}: {str(error)}", err=True)

0 commit comments

Comments
 (0)