summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-04-26 21:12:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-26 22:20:27 (GMT)
commit4d74cd4725da4b575baf2dc20ebee18d49885c4e (patch)
tree35c63037cd27e02960d8ba808265d0326caf5611
parentd82c912c430d63456350ae39ea6d1fa7ba88006d (diff)
downloadgit-4d74cd4725da4b575baf2dc20ebee18d49885c4e.zip
git-4d74cd4725da4b575baf2dc20ebee18d49885c4e.tar.gz
git-4d74cd4725da4b575baf2dc20ebee18d49885c4e.tar.bz2
remote-bzr: tell bazaar to be quiet
Otherwise we get notification, progress bars, and what not. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xcontrib/remote-helpers/git-remote-bzr3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr
index 34f6156..6ccca8e 100755
--- a/contrib/remote-helpers/git-remote-bzr
+++ b/contrib/remote-helpers/git-remote-bzr
@@ -26,6 +26,7 @@ bzrlib.plugin.load_plugins()
import bzrlib.generate_ids
import bzrlib.transport
import bzrlib.errors
+import bzrlib.ui
import sys
import os
@@ -755,6 +756,8 @@ def main(args):
if not os.path.exists(dirname):
os.makedirs(dirname)
+ bzrlib.ui.ui_factory.be_quiet(True)
+
repo = get_repo(url, alias)
marks_path = os.path.join(dirname, 'marks-int')