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