scm: bazaar: use self.class.sq_bin for command name at adpter scm_cmd_no_raise() (#8825).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6284 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-07-15 16:33:24 +00:00
parent 4dea2870b7
commit e10198f0d5
1 changed files with 5 additions and 2 deletions

View File

@ -292,9 +292,12 @@ module Redmine
private :scm_cmd
def scm_cmd_no_raise(*args, &block)
full_args = [BZR_BIN]
full_args = []
full_args += args
ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)
ret = shellout(
self.class.sq_bin + ' ' + full_args.map { |e| shell_quote e.to_s }.join(' '),
&block
)
ret
end
private :scm_cmd_no_raise