##// END OF EJS Templates
largefiles: use `hacky_extension_update_file` in `updatelfiles`...
marmoute -
r50912:1a2360f7 default
parent child Browse files
Show More
@@ -543,10 +543,10 b' def updatelfiles('
543 else:
543 else:
544 dropped.add(lfile)
544 dropped.add(lfile)
545
545
546 # use normallookup() to allocate an entry in largefiles
546 # allocate an entry in largefiles dirstate to prevent
547 # dirstate to prevent lfilesrepo.status() from reporting
547 # lfilesrepo.status() from reporting missing files as
548 # missing files as removed.
548 # removed.
549 lfdirstate.update_file(
549 lfdirstate.hacky_extension_update_file(
550 lfile,
550 lfile,
551 p1_tracked=True,
551 p1_tracked=True,
552 wc_tracked=True,
552 wc_tracked=True,
@@ -591,8 +591,10 b' def updatelfiles('
591 continue
591 continue
592 # Synchronize largefile dirstate to the last modified
592 # Synchronize largefile dirstate to the last modified
593 # time of the file
593 # time of the file
594 lfdirstate.update_file(
594 lfdirstate.hacky_extension_update_file(
595 lfile, p1_tracked=True, wc_tracked=True
595 lfile,
596 p1_tracked=True,
597 wc_tracked=True,
596 )
598 )
597 update1 = 1
599 update1 = 1
598
600
General Comments 0
You need to be logged in to leave comments. Login now