Skip to content

Commit 077e010

Browse files
committed
update rake-compiler commands to install bundler
required for building a release [skip ci]
1 parent beb832e commit 077e010

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,13 +329,13 @@ end
329329
desc "build a windows gem without all the ceremony"
330330
task "gem:windows" do
331331
require "rake_compiler_dock"
332-
RakeCompilerDock.sh "bundle && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=#{ENV['RUBY_CC_VERSION']}"
332+
RakeCompilerDock.sh "gem install bundler && bundle && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=#{ENV['RUBY_CC_VERSION']}"
333333
end
334334

335335
desc "build a jruby gem with docker"
336336
task "gem:jruby" do
337337
require "rake_compiler_dock"
338-
RakeCompilerDock.sh "bundle && rake java gem", rubyvm: 'jruby'
338+
RakeCompilerDock.sh "gem install bundler && bundle && rake java gem", rubyvm: 'jruby'
339339
end
340340

341341
require_relative "tasks/docker"

0 commit comments

Comments
 (0)