* tool/generate-backport-changelog.rb: fixed a typo.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2017-04-30 13:34:18 +00:00
parent e97e093a3d
commit 235a8214b1
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ Majors = {
trunk = "."
target = "."
ARGV.delete_if{|e| /^--trunk=(.*)/ =~ e && trunk = $1}
ARGV.delete_if{|e| /^--target=/ =~ e && target = $1}
ARGV.delete_if{|e| /^--target=(.*)/ =~ e && target = $1}
usage! if ARGV.size == 0 || trunk == target
revisions = []