Skip to content

Commit

Permalink
remote-bzr: tell bazaar to be quiet
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Felipe Contreras authored and Junio C Hamano committed Apr 26, 2013
1 parent d82c912 commit 4d74cd4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions contrib/remote-helpers/git-remote-bzr
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 4d74cd4

Please sign in to comment.