Merge pull request #3931 from consul/bundler_version

Specify which bundler version to install
This commit is contained in:
Javier Martín
2020-02-27 18:08:10 +01:00
committed by GitHub

View File

@@ -71,7 +71,7 @@ end
task :install_bundler_gem do task :install_bundler_gem do
on roles(:app) do on roles(:app) do
within release_path do within release_path do
execute :rvm, fetch(:rvm1_ruby_version), "do", "gem install bundler" execute :rvm, fetch(:rvm1_ruby_version), "do", "gem install bundler --version 1.17.1"
end end
end end
end end