Show More
@@ -691,10 +691,15 b' def updatestandinsbymatch(repo, match):' | |||
|
691 | 691 | # It can cost a lot of time (several seconds) |
|
692 | 692 | # otherwise to update all standins if the largefiles are |
|
693 | 693 | # large. |
|
694 | dirtymatch = matchmod.always() | |
|
695 | with repo.dirstate.running_status(repo): | |
|
694 | 696 | lfdirstate = openlfdirstate(ui, repo) |
|
695 | dirtymatch = matchmod.always() | |
|
696 | 697 | unsure, s, mtime_boundary = lfdirstate.status( |
|
697 | dirtymatch, subrepos=[], ignored=False, clean=False, unknown=False | |
|
698 | dirtymatch, | |
|
699 | subrepos=[], | |
|
700 | ignored=False, | |
|
701 | clean=False, | |
|
702 | unknown=False, | |
|
698 | 703 | ) |
|
699 | 704 | modifiedfiles = unsure + s.modified + s.added + s.removed |
|
700 | 705 | lfiles = listlfiles(repo) |
General Comments 0
You need to be logged in to leave comments.
Login now