* tool/generic_erb.rb: fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-02-02 23:15:59 +00:00
Родитель 42e0d76c25
Коммит dc960b8729
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -10,8 +10,8 @@ opt = OptionParser.new do |o|
o.on('-o', '--output=PATH') {|v| output = v}
o.on('-c', '--[no-]if-change') {|v| ifchange = v}
o.order!(ARGV)
end or abort opt.opt_s
template = ARGV.shift
end
template = ARGV.shift or abort opt.to_s
erb = ERB.new(File.read(template), nil, '%')
erb.filename = template
result = erb.result