1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Fix to previous fix

This commit is contained in:
Ciaran Gultnieks 2012-01-20 23:17:50 +00:00
parent 0121c70763
commit 5928e9cc25

View File

@ -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")