chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0121c70
)
Fix to previous fix
author
Ciaran Gultnieks
<ciaran@ciarang.com>
Fri, 20 Jan 2012 23:17:50 +0000
(23:17 +0000)
committer
Ciaran Gultnieks
<ciaran@ciarang.com>
Fri, 20 Jan 2012 23:17:50 +0000
(23:17 +0000)
common.py
patch
|
blob
|
history
diff --git
a/common.py
b/common.py
index 949c51a255a4ceae9f557601e3e36c369bbdd04e..d45523753e95376c8a39de38c65ce05a47525ea8 100644
(file)
--- 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")