scm: bazaar: refactor adapter annotate to use scm_cmd().

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5912 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-05-26 01:11:25 +00:00
parent d4d75401b3
commit 7c03f30cd1
1 changed files with 7 additions and 6 deletions

View File

@ -199,11 +199,11 @@ module Redmine
end end
def annotate(path, identifier=nil) def annotate(path, identifier=nil)
cmd = "#{self.class.sq_bin} annotate --all"
cmd << " -r#{identifier.to_i}" if identifier && identifier.to_i > 0
cmd << " #{target(path)}"
blame = Annotate.new blame = Annotate.new
shellout(cmd) do |io| cmd_args = %w|annotate --all|
cmd_args << "-r#{identifier.to_i}" if identifier && identifier.to_i > 0
cmd_args << bzr_target(path)
scm_cmd(*cmd_args) do |io|
author = nil author = nil
identifier = nil identifier = nil
io.each_line do |line| io.each_line do |line|
@ -217,8 +217,9 @@ module Redmine
)) ))
end end
end end
return nil if $? && $?.exitstatus != 0
blame blame
rescue ScmCommandAborted
return nil
end end
def self.branch_conf_path(path) def self.branch_conf_path(path)