summaryrefslogtreecommitdiff
path: root/tool/enc-unicode.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-23 15:55:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-23 15:55:00 +0000
commite1e5857c08fb6754dcc950ffb8e473fca9232cb6 (patch)
tree3d4a5b95ed253f6df2af81a22de60783abe0258d /tool/enc-unicode.rb
parent81ab413288b935d4c09cf9b3547c4d3913671874 (diff)
downloadruby-e1e5857c08fb6754dcc950ffb8e473fca9232cb6.tar.gz
enc-unicode.rb: fix version matching
* tool/enc-unicode.rb (data_foreach): version comments do not include sub directory names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/enc-unicode.rb')
-rwxr-xr-xtool/enc-unicode.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/enc-unicode.rb b/tool/enc-unicode.rb
index 220c46c8ef..baa05da496 100755
--- a/tool/enc-unicode.rb
+++ b/tool/enc-unicode.rb
@@ -307,7 +307,7 @@ end
def data_foreach(name, &block)
fn = get_file(name)
warn "Reading #{name}"
- pat = /^# #{name.sub(/\./, '-([\\d.]+)\\.')}/
+ pat = /^# #{File.basename(name).sub(/\./, '-([\\d.]+)\\.')}/
File.open(fn, 'rb') do |f|
line = f.gets
unless pat =~ line