diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-04-26 16:12:37 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-26 15:20:27 -0700 |
commit | 4d74cd4725da4b575baf2dc20ebee18d49885c4e (patch) | |
tree | 35c63037cd27e02960d8ba808265d0326caf5611 /contrib/remote-helpers | |
parent | remote-bzr: store converted URL (diff) | |
download | tgif-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')
-rwxr-xr-x | contrib/remote-helpers/git-remote-bzr | 3 |
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') |