summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/jvn.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bin/jvn.rs b/src/bin/jvn.rs
index b051c51..062eab8 100644
--- a/src/bin/jvn.rs
+++ b/src/bin/jvn.rs
@@ -279,6 +279,12 @@ fn handle_prepare_error(cmd_prepare_error: CmdPrepareError) {
CmdPrepareError::NoSheetInUse => {
eprintln!("{}", md(t!("prepare_error.no_sheet_in_use")));
}
+ CmdPrepareError::EarlyOutput(_) => {
+ // Early output is not an error
+ // No additional handling needed,
+ // this result has already been captured in `crate::systems::cmd::cmd_system.rs`
+ exit(0)
+ }
}
}