##// END OF EJS Templates
dirstate: fix the bug in [status] dealing with committed&ignored directories...
Arseniy Alekseyev -
r51224:edcc35a4 stable
parent child Browse files
Show More
@@ -244,7 +244,7 b" impl<'a> HasIgnoredAncestor<'a> {"
244 match self.parent {
244 match self.parent {
245 None => false,
245 None => false,
246 Some(parent) => {
246 Some(parent) => {
247 *(parent.cache.get_or_init(|| {
247 *(self.cache.get_or_init(|| {
248 parent.force(ignore_fn) || ignore_fn(self.path)
248 parent.force(ignore_fn) || ignore_fn(self.path)
249 }))
249 }))
250 }
250 }
@@ -30,6 +30,4 b' Untracked files in d2 are still shown, b'
30 $ touch d1/g
30 $ touch d1/g
31 $ touch d2/g
31 $ touch d2/g
32 $ RAYON_NUM_THREADS=1 hg status
32 $ RAYON_NUM_THREADS=1 hg status
33 ? d2/g (no-rust no-rhg !)
33 ? d2/g
34
35 ^ BUG: d2/g does not show up with rust status
General Comments 0
You need to be logged in to leave comments. Login now