We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91592c9 commit 2234882Copy full SHA for 2234882
hermetic_build/common/model/config_change.py
@@ -105,7 +105,7 @@ def get_qualified_commits(
105
:param repo_url: the repository contains the commit history.
106
:return: QualifiedCommit objects.
107
"""
108
- with tempfile.TemporaryDirectory() as tmp_dir:
+ with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as tmp_dir:
109
# we only need commit history, thus a shadow clone is enough.
110
repo = Repo.clone_from(url=repo_url, to_path=tmp_dir, filter=["blob:none"])
111
commit = repo.commit(self.current_config.googleapis_commitish)
0 commit comments