scm: mercurial: switch root_url or url in "hg" method (#4455).
"info" sets root_url from url. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4844 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
202ebe1d12
commit
2c4836cbae
|
@ -224,7 +224,8 @@ module Redmine
|
||||||
|
|
||||||
# Runs 'hg' command with the given args
|
# Runs 'hg' command with the given args
|
||||||
def hg(*args, &block)
|
def hg(*args, &block)
|
||||||
full_args = [HG_BIN, '-R', root_url, '--encoding', 'utf-8']
|
repo_path = root_url || url
|
||||||
|
full_args = [HG_BIN, '-R', repo_path, '--encoding', 'utf-8']
|
||||||
full_args << '--config' << "extensions.redminehelper=#{HG_HELPER_EXT}"
|
full_args << '--config' << "extensions.redminehelper=#{HG_HELPER_EXT}"
|
||||||
full_args << '--config' << 'diff.git=false'
|
full_args << '--config' << 'diff.git=false'
|
||||||
full_args += args
|
full_args += args
|
||||||
|
|
Loading…
Reference in New Issue