summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-12-01 23:55:55 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2022-12-01 23:56:02 -0800
commit07ac707758395749611e1028ef18127087d198db (patch)
tree430b7117d5de63545ebc8a656663e8c752bfb9ab /tool
parentf01bfa8af7e4d163e411d133da7ef170f1b33988 (diff)
MJIT: Use install = true for bundler/inline
It prints a `bundle install`-like output, which seems more useful than a silent output.
Diffstat (limited to 'tool')
-rwxr-xr-xtool/mjit/bindgen.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/mjit/bindgen.rb b/tool/mjit/bindgen.rb
index c9bfc470c8..b846a91664 100755
--- a/tool/mjit/bindgen.rb
+++ b/tool/mjit/bindgen.rb
@@ -4,7 +4,7 @@
ENV['GEM_HOME'] = File.expand_path('./.bundle', __dir__)
require 'rubygems/source'
require 'bundler/inline'
-gemfile do
+gemfile(true) do
source 'https://rubygems.org'
gem 'ffi-clang', '0.7.0', require: false
end