summaryrefslogtreecommitdiff
path: root/contrib/remote-helpers/git-remote-bzr
diff options
context:
space:
mode:
authorLibravatar Felipe Contreras <felipe.contreras@gmail.com>2013-04-26 16:12:37 -0500
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-04-26 15:20:27 -0700
commit4d74cd4725da4b575baf2dc20ebee18d49885c4e (patch)
tree35c63037cd27e02960d8ba808265d0326caf5611 /contrib/remote-helpers/git-remote-bzr
parentremote-bzr: store converted URL (diff)
downloadtgif-4d74cd4725da4b575baf2dc20ebee18d49885c4e.tar.xz
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>
Diffstat (limited to 'contrib/remote-helpers/git-remote-bzr')
-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 34f6156576..6ccca8e7dc 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')