##// 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 244 match self.parent {
245 245 None => false,
246 246 Some(parent) => {
247 *(parent.cache.get_or_init(|| {
247 *(self.cache.get_or_init(|| {
248 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 30 $ touch d1/g
31 31 $ touch d2/g
32 32 $ RAYON_NUM_THREADS=1 hg status
33 ? d2/g (no-rust no-rhg !)
34
35 ^ BUG: d2/g does not show up with rust status
33 ? d2/g
General Comments 0
You need to be logged in to leave comments. Login now