Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

deprecated methods replaced with new ones #329

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/libv8/builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def setup_build_deps!
ENV['PATH'] = "#{File.expand_path('../../../vendor/depot_tools', __FILE__)}:#{ENV['PATH']}"

Dir.chdir(File.expand_path('../../../vendor', __FILE__)) do
unless Dir.exists?('v8') || File.exists?('.gclient')
unless Dir.exist?('v8') || File.exist?('.gclient')
system "fetch v8" or fail "unable to fetch v8 source"
end

Expand Down