fix: adding or syntax for nushell

This commit is contained in:
iff 2025-03-13 21:14:50 +01:00
parent 33f8f2634d
commit ec9609f470

View file

@ -684,6 +684,7 @@ pub fn shell_syntax(shell: &str, command: &mut String) {
match shell {
"nu" => {
*command = command.replace(" && ", " and ");
*command = command.replace(" || ", " or ");
}
_ => {}
}