Write exitcode on exit

This commit is contained in:
veeso
2022-04-07 11:07:41 +02:00
parent c47fcb2225
commit 601b0595d4

View File

@@ -150,7 +150,7 @@ fn main() {
// Run
info!("Starting activity manager...");
let rc: i32 = run(run_opts);
info!("termscp terminated");
info!("termscp terminated with exitcode {}", rc);
// Then return
std::process::exit(rc);
}