Skip to content

Commit a4e89e5

Browse files
scm,git: restore progress bar for git pull operation
1 parent b4ac6e0 commit a4e89e5

File tree

1 file changed

+1
-1
lines changed
  • src/outpost/barbican/scm

1 file changed

+1
-1
lines changed

src/outpost/barbican/scm/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def fetch(self) -> None:
173173
if is_new_ref:
174174
refspec += ":" + refspec
175175

176-
fetch_infos = self._repo.remote().fetch(refspec=refspec)
176+
fetch_infos = self._repo.remote().fetch(refspec=refspec, progress=GitProgressBar())
177177

178178
# this should never occurs
179179
if len(fetch_infos) != 1:

0 commit comments

Comments
 (0)