##// END OF EJS Templates
largefile: use `update_file` instead of `drop` in `synclfdirstate`...
marmoute -
r48549:068e0949 default
parent child Browse files
Show More
@@ -556,7 +556,7 b' def getstandinsstate(repo):'
556 def synclfdirstate(repo, lfdirstate, lfile, normallookup):
556 def synclfdirstate(repo, lfdirstate, lfile, normallookup):
557 lfstandin = standin(lfile)
557 lfstandin = standin(lfile)
558 if lfstandin not in repo.dirstate:
558 if lfstandin not in repo.dirstate:
559 lfdirstate.drop(lfile)
559 lfdirstate.update_file(lfile, p1_tracked=False, wc_tracked=False)
560 else:
560 else:
561 stat = repo.dirstate._map[lfstandin]
561 stat = repo.dirstate._map[lfstandin]
562 state, mtime = stat.state, stat.mtime
562 state, mtime = stat.state, stat.mtime
General Comments 0
You need to be logged in to leave comments. Login now