scm: mercurial: use self.class.sq_bin for command name at adpter scm_cmd() (#8825).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6279 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
50f4087aa7
commit
eacffe0361
|
@ -294,11 +294,14 @@ module Redmine
|
|||
# Runs 'hg' command with the given args
|
||||
def hg(*args, &block)
|
||||
repo_path = root_url || url
|
||||
full_args = [HG_BIN, '-R', repo_path, '--encoding', 'utf-8']
|
||||
full_args = ['-R', repo_path, '--encoding', 'utf-8']
|
||||
full_args << '--config' << "extensions.redminehelper=#{HG_HELPER_EXT}"
|
||||
full_args << '--config' << 'diff.git=false'
|
||||
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
|
||||
)
|
||||
if $? && $?.exitstatus != 0
|
||||
raise HgCommandAborted, "hg exited with non-zero status: #{$?.exitstatus}"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue