From: Ciaran Gultnieks Date: Fri, 20 Jan 2012 23:17:50 +0000 (+0000) Subject: Fix to previous fix X-Git-Tag: 0.1~1084 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5928e9cc250c893eb68392bcc77149766964abac;p=fdroidserver.git Fix to previous fix --- diff --git a/common.py b/common.py index 949c51a2..d4552375 100644 --- a/common.py +++ b/common.py @@ -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")