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

tool/ruby_vm/scripts/insns2vm.rb: fix typo in r62064

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-04-06 20:50:28 +00:00
parent edfd063295
commit 5506e9b174

View file

@ -80,7 +80,7 @@ module RubyVM::Insns2VM
THIS IS THE ONLY OPTION THAT WORKS today. Change destination THIS IS THE ONLY OPTION THAT WORKS today. Change destination
directory from the current working directory to the given path. directory from the current working directory to the given path.
begin begin
raise "directory was not found in '#{dir}'" unless Dir.eixst?(dir) raise "directory was not found in '#{dir}'" unless Dir.exist?(dir)
options[:destdir] = dir options[:destdir] = dir
end end