Skip to content

Commit 26d1390

Browse files
committed
fix: flag exception state in xpy via return code
1 parent 4491a38 commit 26d1390

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

maxray/capture/logs_cli.py

+3
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,9 @@ def cli(
617617
str(capture_to.with_stem(capture_to.stem + "-functions")),
618618
)
619619

620+
if _result.exception is not None:
621+
exit(1)
622+
620623

621624
def run_script():
622625
cli.main(standalone_mode=False)

0 commit comments

Comments
 (0)