scm: bazaar: add -q option in "bzr annotate".

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5915 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-05-26 01:13:43 +00:00
parent a09144ea5d
commit 4a7243aa75
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ module Redmine
def annotate(path, identifier=nil)
blame = Annotate.new
cmd_args = %w|annotate --all|
cmd_args = %w|annotate -q --all|
cmd_args << "-r#{identifier.to_i}" if identifier && identifier.to_i > 0
cmd_args << bzr_target(path)
scm_cmd(*cmd_args) do |io|