summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commands/bulk_rename.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/bulk_rename.rs b/src/commands/bulk_rename.rs
index 1c0403c..540036b 100644
--- a/src/commands/bulk_rename.rs
+++ b/src/commands/bulk_rename.rs
@@ -103,7 +103,7 @@ pub fn _bulk_rename(context: &mut AppContext) -> JoshutoResult {
let user_input_fmt = user_input.trim().to_lowercase();
match user_input_fmt.as_str() {
- "y" | "yes" => {
+ "" | "y" | "yes" => {
for (p, q) in entries.iter().zip(paths_renamed.iter()) {
let mut handle = process::Command::new("mv")
.arg("-iv")