##// END OF EJS Templates
fix: make the order of the work queue deterministic...
Danny Hooper -
r42176:8f427f7c default
parent child Browse files
Show More
@@ -280,8 +280,8 b' def getworkqueue(ui, repo, pats, opts, r'
280 for rev in sorted(revstofix):
280 for rev in sorted(revstofix):
281 fixctx = repo[rev]
281 fixctx = repo[rev]
282 match = scmutil.match(fixctx, pats, opts)
282 match = scmutil.match(fixctx, pats, opts)
283 for path in pathstofix(ui, repo, pats, opts, match, basectxs[rev],
283 for path in sorted(pathstofix(
284 fixctx):
284 ui, repo, pats, opts, match, basectxs[rev], fixctx)):
285 fctx = fixctx[path]
285 fctx = fixctx[path]
286 if fctx.islink():
286 if fctx.islink():
287 continue
287 continue
General Comments 0
You need to be logged in to leave comments. Login now