Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 48f6c05

Browse files
committed
fix(cmserve): allow to use both example flags at once
1 parent 185fb75 commit 48f6c05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bins/cmserve.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ fn main() -> Result<(), DebuggerError> {
5454

5555
if args.example_statuses {
5656
example_statuses();
57-
exit(0);
5857
}
5958
if args.example_feedbacks {
6059
example_feedbacks();
60+
}
61+
if args.example_feedbacks || args.example_statuses {
6162
exit(0);
63+
6264
}
6365

6466
let ui = JsonUI::build()?;

0 commit comments

Comments
 (0)