Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"tomli>=2.0.1; python_version < '3.11'",
"referencing>=0.33.0",
"rich>=13.6",
"GitPython>=3.1.43",
"GitPython>=3.1.44",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion src/outpost/barbican/scm/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def fetch(self) -> None:
if is_new_ref:
refspec += ":" + refspec

fetch_infos = self._repo.remote().fetch(refspec=refspec)
fetch_infos = self._repo.remote().fetch(refspec=refspec, progress=GitProgressBar())

# this should never occurs
if len(fetch_infos) != 1:
Expand Down
Loading