hgext/largefiles/overrides.py
changeset 47721 d46d3aefd00b
parent 47703 7d2f0e14da4c
child 47750 13e2ce796dcd
--- a/hgext/largefiles/overrides.py	Sun Jul 18 23:42:22 2021 +0200
+++ b/hgext/largefiles/overrides.py	Sun Jul 18 23:43:08 2021 +0200
@@ -1785,7 +1785,9 @@
         # mark all clean largefiles as dirty, just in case the update gets
         # interrupted before largefiles and lfdirstate are synchronized
         for lfile in oldclean:
-            lfdirstate.normallookup(lfile)
+            entry = lfdirstate._map.get(lfile)
+            assert not (entry.merged_removed or entry.from_p2_removed)
+            lfdirstate.set_possibly_dirty(lfile)
         lfdirstate.write()
 
         oldstandins = lfutil.getstandinsstate(repo)