···2525 problematic string is now surrounded in quotes.
2626- Status bar is cleaned every time after execution is completed.
2727- Fixed garnix docs links in documentation.
2828+- Forces `bash` instead of remote user's potentially unsupported shell. This bug
2929+ was causing strange and hard to diagnose issues.
28302931## [v1.2.0] - 2026-03-18
3032
+1-1
crates/core/src/commands/noninteractive.rs
···3939 let mut command = if let Some(ref target) = arguments.target {
4040 create_sync_ssh_command(target, arguments.modifiers).await?
4141 } else {
4242- let mut command = Command::new("sh");
4242+ let mut command = Command::new("bash");
43434444 command.arg("-c");
4545