##// END OF EJS Templates
largefile: use `update_file` instead of `normallookup` in `updatelfiles`...
marmoute -
r48522:47dce5a9 default
parent child Browse files
Show More
@@ -548,7 +548,12 b' def updatelfiles('
548 # use normallookup() to allocate an entry in largefiles
548 # use normallookup() to allocate an entry in largefiles
549 # dirstate to prevent lfilesrepo.status() from reporting
549 # dirstate to prevent lfilesrepo.status() from reporting
550 # missing files as removed.
550 # missing files as removed.
551 lfdirstate.normallookup(lfile)
551 lfdirstate.update_file(
552 lfile,
553 p1_tracked=True,
554 wc_tracked=True,
555 possibly_dirty=True,
556 )
552 update[lfile] = expecthash
557 update[lfile] = expecthash
553 else:
558 else:
554 # Remove lfiles for which the standin is deleted, unless the
559 # Remove lfiles for which the standin is deleted, unless the
General Comments 0
You need to be logged in to leave comments. Login now