summaryrefslogtreecommitdiff
path: root/lorry
diff options
context:
space:
mode:
Diffstat (limited to 'lorry')
-rwxr-xr-xlorry4
1 files changed, 2 insertions, 2 deletions
diff --git a/lorry b/lorry
index 9554909..2dd261d 100755
--- a/lorry
+++ b/lorry
@@ -77,7 +77,7 @@ class Lorry(cliapp.Application):
self.run_program(['git', 'clone', '--mirror', spec['url'], gitdir])
else:
self.progress('.. updating existing clone')
- self.run_program(['git', 'fetch', '--all', '--tags'], cwd=gitdir)
+ self.run_program(['git', 'fetch', '--all'], cwd=gitdir)
def gitify_bzr(self, dirname, gitdir, spec):
bzrdir = os.path.join(dirname, 'bzr')
@@ -172,7 +172,7 @@ class Lorry(cliapp.Application):
cwd=gitdir)
self.progress('.. pushing to gitorious')
- self.run_program(['git', 'push', '--all', '--tags', 'gitorious'], cwd=gitdir)
+ self.run_program(['git', 'push', '--all', 'gitorious'], cwd=gitdir)
def run_program(self, argv, **kwargs):
logging.debug('Running: argv=%s kwargs=%s' %