mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/merger.rb (#default_merge_branch): Add support for
Subversion 1.7 which adopted a whole new working directory structure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0d0344c1f0
commit
24dbd19791
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Sun Feb 12 16:30:23 2012 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
|
* tool/merger.rb (#default_merge_branch): Add support for
|
||||||
|
Subversion 1.7 which adopted a whole new working directory
|
||||||
|
structure.
|
||||||
|
|
||||||
Sun Feb 12 15:14:41 2012 Kazuki Tsujimoto <kazuki@callcc.net>
|
Sun Feb 12 15:14:41 2012 Kazuki Tsujimoto <kazuki@callcc.net>
|
||||||
|
|
||||||
* benchmark/driver.rb: suppress unused/shadowing variable warnings.
|
* benchmark/driver.rb: suppress unused/shadowing variable warnings.
|
||||||
|
|
|
@ -112,7 +112,7 @@ def tag intv_p = false
|
||||||
end
|
end
|
||||||
|
|
||||||
def default_merge_branch
|
def default_merge_branch
|
||||||
/branches\/ruby_1_8_/ =~ IO.binread(".svn/entries", 100) ? 'branches/ruby_1_8' : 'trunk'
|
%r{^URL: .*/branches/ruby_1_8_} =~ `svn info` ? 'branches/ruby_1_8' : 'trunk'
|
||||||
end
|
end
|
||||||
|
|
||||||
case ARGV[0]
|
case ARGV[0]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue