##// END OF EJS Templates
rust-status: fix ignore and include not composing (issue6514)...
Raphaël Gomès -
r48102:c8f62920 stable
parent child Browse files
Show More
@@ -557,10 +557,12 b' where'
557 .unwrap();
557 .unwrap();
558 }
558 }
559 } else if self.is_ignored(&filename) && self.options.list_ignored {
559 } else if self.is_ignored(&filename) && self.options.list_ignored {
560 if self.matcher.matches(&filename) {
560 files_sender
561 files_sender
561 .send((filename.to_owned(), Dispatch::Ignored))
562 .send((filename.to_owned(), Dispatch::Ignored))
562 .unwrap();
563 .unwrap();
563 }
564 }
565 }
564 } else if let Some(entry) = entry_option {
566 } else if let Some(entry) = entry_option {
565 // Used to be a file or a folder, now something else.
567 // Used to be a file or a folder, now something else.
566 if self.matcher.matches_everything()
568 if self.matcher.matches_everything()
@@ -708,4 +708,3 b' Check using include flag while listing i'
708 I A.hs
708 I A.hs
709 I B.hs
709 I B.hs
710 I ignored-folder/ctest.hs
710 I ignored-folder/ctest.hs
711 I ignored-folder/other.txt (known-bad-output rust !)
General Comments 0
You need to be logged in to leave comments. Login now