Show More
@@ -139,7 +139,7 b' def reposetup(ui, repo):' | |||
|
139 | 139 | except error.LockError: |
|
140 | 140 | wlock = util.nullcontextmanager() |
|
141 | 141 | gotlock = False |
|
142 | with wlock: | |
|
142 | with wlock, self.dirstate.running_status(self): | |
|
143 | 143 | |
|
144 | 144 | # First check if paths or patterns were specified on the |
|
145 | 145 | # command line. If there were, and they don't match any |
@@ -321,6 +321,8 b' def reposetup(ui, repo):' | |||
|
321 | 321 | |
|
322 | 322 | if gotlock: |
|
323 | 323 | lfdirstate.write(self.currenttransaction()) |
|
324 | else: | |
|
325 | lfdirstate.invalidate() | |
|
324 | 326 | |
|
325 | 327 | self.lfstatus = True |
|
326 | 328 | return scmutil.status(*result) |
General Comments 0
You need to be logged in to leave comments.
Login now