Skip to content
Snippets Groups Projects
Commit 901f6ef6 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

debugbuildannotatecache: use progress helper

Differential Revision: https://phab.mercurial-scm.org/D5373
parent 64051af1
No related branches found
No related tags found
No related merge requests found
......@@ -261,4 +261,5 @@
repo.prefetchfastannotate(paths)
else:
# server, or full repo
progress = ui.makeprogress(_('building'), total=len(paths))
for i, path in enumerate(paths):
......@@ -264,5 +265,5 @@
for i, path in enumerate(paths):
ui.progress(_('building'), i, total=len(paths))
progress.update(i)
with facontext.annotatecontext(repo, path) as actx:
try:
if actx.isuptodate(rev):
......@@ -281,5 +282,4 @@
# cache for other files.
ui.warn(_('fastannotate: %s: failed to '
'build cache: %r\n') % (path, ex))
# clear the progress bar
ui.write()
progress.complete()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment