1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

tool/insns2vm.rb: get rid of expanding paths

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-10-18 23:58:21 +00:00
parent 88a7271de4
commit 3c83a94ea9
4 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ require_relative '../loaders/vm_opts_h'
class ApplicationController
def generate i, destdir
path = Pathname.new i
dst = Pathname.new(destdir).join(i)
dst = destdir ? Pathname.new(destdir).join(i) : Pathname.new(i)
dumper = RubyVM::Dumper.new dst
return [path, dumper]
end