When pulling, no need to specify the full URL, just use 'origin'

This commit is contained in:
Marco Castelluccio 2023-04-15 23:56:47 +02:00
Родитель ceae801e48
Коммит 5ad8615994
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -116,7 +116,7 @@ class MicroannotateGenerator(object):
stop=tenacity.stop_after_attempt(5),
)(
lambda: subprocess.run(
["git", "pull", self.repo_url, "master"],
["git", "pull", "origin", "master"],
cwd=self.git_repo_path,
capture_output=True,
check=True,