fix: avoid error from ssh break program

This commit is contained in:
robcholz
2026-02-07 16:56:27 -05:00
parent dfecd12e12
commit 64e2cdb8d4
+2 -1
View File
@@ -311,7 +311,8 @@ fn run_ssh_session(
thread::sleep(Duration::from_millis(500));
}
Ok(status) => {
return Err(format!("ssh exited with status: {status}").into());
eprintln!("[vibebox] ssh exited with status: {status}");
break;
}
Err(err) => {
return Err(format!("failed to start ssh: {err}").into());