Fix cd multi-selection (#626)

This commit is contained in:
JEEVITHA KANNAN K S 2024-09-22 23:54:06 +05:30 committed by GitHub
parent fa3474b92d
commit e8b208f2b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -161,6 +161,7 @@ impl RunningCommand {
script.push(' '); script.push(' ');
script.push_str(&arg); script.push_str(&arg);
} }
script.push('\n'); // Ensures that each command is properly separated for execution preventing directory errors
} }
Command::None => panic!("Command::None was treated as a command"), Command::None => panic!("Command::None was treated as a command"),
} }