scm: git: change core.quotepath = true temporarily to run git command (#5251).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5025 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
fce4dcb5a6
commit
90d4447bd3
|
@ -319,7 +319,8 @@ module Redmine
|
||||||
|
|
||||||
def scm_cmd(*args, &block)
|
def scm_cmd(*args, &block)
|
||||||
repo_path = root_url || url
|
repo_path = root_url || url
|
||||||
full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false']
|
# full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false']
|
||||||
|
full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=true']
|
||||||
full_args += args
|
full_args += args
|
||||||
ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)
|
ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)
|
||||||
if $? && $?.exitstatus != 0
|
if $? && $?.exitstatus != 0
|
||||||
|
|
Loading…
Reference in New Issue