##// END OF EJS Templates
manifest: avoid intersectfiles for matches > 100 files...
Durham Goode -
r24396:9e03602c default
parent child Browse files
Show More
@@ -164,8 +164,8 b' class manifestdict(object):'
164 return self.copy()
164 return self.copy()
165
165
166 files = match.files()
166 files = match.files()
167 if ((match.matchfn == match.exact and len(files) < 100) or
167 if (len(files) < 100 and (match.matchfn == match.exact or
168 (not match.anypats() and util.all(fn in self for fn in files))):
168 (not match.anypats() and util.all(fn in self for fn in files)))):
169 return self.intersectfiles(files)
169 return self.intersectfiles(files)
170
170
171 lm = manifestdict('')
171 lm = manifestdict('')
General Comments 0
You need to be logged in to leave comments. Login now