mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix wrong svn options
for SVN as a backport source. This was a mistake in de5378233b2ff5434f024ac66285e699794a321d...
This commit is contained in:
parent
1c8cefca31
commit
392d84b490
1 changed files with 2 additions and 2 deletions
|
@ -266,9 +266,9 @@ else
|
|||
else
|
||||
default_merge_branch = (%r{^URL: .*/branches/ruby_1_8_} =~ `svn info` ? 'branches/ruby_1_8' : 'trunk')
|
||||
svn_src = "#{Merger::REPOS}#{ARGV[1] || default_merge_branch}"
|
||||
message = IO.popen(['svn', 'log', '-r', svn_rev, svn_src], &:read)
|
||||
message = IO.popen(['svn', 'log', '-c', svn_rev, svn_src], &:read)
|
||||
|
||||
cmd = ['svn', 'merge', '--accept=postpone', '-r', svn_rev, svn_src]
|
||||
cmd = ['svn', 'merge', '--accept=postpone', '-c', svn_rev, svn_src]
|
||||
puts "+ #{cmd.join(' ')}"
|
||||
system(*cmd)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue