##// END OF EJS Templates
rust-status: don't dispatch unknown file when traversing if not listing unknowns...
Raphaël Gomès -
r45352:dc60ba32 default
parent child Browse files
Show More
@@ -371,9 +371,11 b" fn handle_traversed_entry<'a>("
371 .unwrap();
371 .unwrap();
372 }
372 }
373 } else {
373 } else {
374 files_sender
374 if options.list_unknown {
375 .send(Ok((filename.to_owned(), Dispatch::Unknown)))
375 files_sender
376 .unwrap();
376 .send(Ok((filename.to_owned(), Dispatch::Unknown)))
377 .unwrap();
378 }
377 }
379 }
378 } else if ignore_fn(&filename) && options.list_ignored {
380 } else if ignore_fn(&filename) && options.list_ignored {
379 files_sender
381 files_sender
General Comments 0
You need to be logged in to leave comments. Login now