##// END OF EJS Templates
context: use scmutil.matchfiles instead of matchmod.match(exact=True)...
Kyle Lippincott -
r41260:b1298371 default
parent child Browse files
Show More
@@ -2022,7 +2022,7 b' class overlayworkingctx(committablectx):'
2022 # using things like remotefilelog.
2022 # using things like remotefilelog.
2023 scmutil.prefetchfiles(
2023 scmutil.prefetchfiles(
2024 self.repo(), [self.p1().rev()],
2024 self.repo(), [self.p1().rev()],
2025 matchmod.match('', '', patterns=self._cache.keys(), exact=True))
2025 scmutil.matchfiles(self.repo(), self._cache.keys()))
2026
2026
2027 for path in self._cache.keys():
2027 for path in self._cache.keys():
2028 cache = self._cache[path]
2028 cache = self._cache[path]
General Comments 0
You need to be logged in to leave comments. Login now