The branch, master has been updated via c00d602f1bd49a1bb387119cb5cc7ad37206beab (commit) from 279b9886d2e4ca5bf7f6b2633a5084291a3672ec (commit)
- Log ----------------------------------------------------------------- commit c00d602f1bd49a1bb387119cb5cc7ad37206beab Author: Michal Čihař mcihar@novell.com Date: Fri Mar 12 11:27:07 2010 +0100
Make pull quiet.
-----------------------------------------------------------------------
Summary of changes: helper/cache.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/helper/cache.py b/helper/cache.py index 28c288d..3cd3dd8 100644 --- a/helper/cache.py +++ b/helper/cache.py @@ -185,7 +185,7 @@ class GitCache(Cache): if not os.path.exists(self.dirname): os.system('git clone %s %s' % (url, self.dirname)) else: - os.system('cd %s ; git pull' % self.dirname) + os.system('cd %s ; git pull -q' % self.dirname) self.repo = git.Repo(self.dirname) self.tree = self.repo.tree() self.langtree = self.tree['lang']
hooks/post-receive