##// END OF EJS Templates
large-files: use `running_status` in `scmutiladdremove`...
marmoute -
r51035:f757788a default
parent child Browse files
Show More
@@ -1558,14 +1558,15 b' def scmutiladdremove('
1558 open_tr()
1558 open_tr()
1559
1559
1560 # Get the list of missing largefiles so we can remove them
1560 # Get the list of missing largefiles so we can remove them
1561 lfdirstate = lfutil.openlfdirstate(repo.ui, repo)
1561 with repo.dirstate.running_status(repo):
1562 unsure, s, mtime_boundary = lfdirstate.status(
1562 lfdirstate = lfutil.openlfdirstate(repo.ui, repo)
1563 matchmod.always(),
1563 unsure, s, mtime_boundary = lfdirstate.status(
1564 subrepos=[],
1564 matchmod.always(),
1565 ignored=False,
1565 subrepos=[],
1566 clean=False,
1566 ignored=False,
1567 unknown=False,
1567 clean=False,
1568 )
1568 unknown=False,
1569 )
1569
1570
1570 # Call into the normal remove code, but the removing of the standin, we want
1571 # Call into the normal remove code, but the removing of the standin, we want
1571 # to have handled by original addremove. Monkey patching here makes sure
1572 # to have handled by original addremove. Monkey patching here makes sure
General Comments 0
You need to be logged in to leave comments. Login now