Skip to content

Commit 950b8bf

Browse files
committed
Explicitly call bundle install
Bundler 4.0 changes the behaviour of a bare call to `bundle` to print help rather than running `bundle install`. See ruby/rubygems#8786
1 parent 70d7a02 commit 950b8bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ namespace :gem do
7676
sudo apt-get install -y cmake=3.22.2-0kitware1ubuntu20.04.1 cmake-data=3.22.2-0kitware1ubuntu20.04.1 &&
7777
rbenv shell 3.1.6 &&
7878
gem install bundler --no-document &&
79-
bundle &&
79+
bundle install &&
8080
bundle exec rake native:#{platform} pkg/#{re2_gemspec.full_name}-#{Gem::Platform.new(platform)}.gem PATH="/usr/local/bin:$PATH"
8181
SCRIPT
8282
end

scripts/test-gem-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ set -eu
44

55
gem install --no-document pkg/*.gem -- "$@"
66
cd "$(dirname "$(gem which re2)")/.."
7-
bundle
7+
bundle install
88
bundle exec rake spec

0 commit comments

Comments
 (0)