mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Fix to previous fix
This commit is contained in:
parent
0121c70763
commit
5928e9cc25
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class vcs_git(vcs):
|
|||
def pull(self):
|
||||
self.checkrepo()
|
||||
# Might need tags that aren't on a branch.
|
||||
if subprocess.call(['git', 'fetch', '--all', '--tags', 'origin'],
|
||||
if subprocess.call(['git', 'fetch', '--tags', 'origin'],
|
||||
cwd=self.local) != 0:
|
||||
raise VCSException("Git fetch failed")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue