##// END OF EJS Templates
dirstate.walk: maintain a list of dirs not found...
Siddharth Agarwal -
r19170:b184e504 default
parent child Browse files
Show More
@@ -607,6 +607,7 b' class dirstate(object):'
607 results['.hg'] = None
607 results['.hg'] = None
608
608
609 # step 1: find all explicit files
609 # step 1: find all explicit files
610 dirsnotfound = []
610 for ff in files:
611 for ff in files:
611 if normalize:
612 if normalize:
612 nf = normalize(normpath(ff), False, True)
613 nf = normalize(normpath(ff), False, True)
@@ -642,6 +643,7 b' class dirstate(object):'
642 if fn.startswith(prefix):
643 if fn.startswith(prefix):
643 if matchedir:
644 if matchedir:
644 matchedir(nf)
645 matchedir(nf)
646 dirsnotfound.append(nf)
645 skipstep3 = False
647 skipstep3 = False
646 break
648 break
647 else:
649 else:
General Comments 0
You need to be logged in to leave comments. Login now