Capistrano 在 rvm 更新后使用了错误的 ruby 版本

Capistrano using wrong ruby version after rvm update

我有一个已成功部署应用多年的 capistrano 3.4.0 脚本。但是今天我更新了 RVM 并尝试部署我的 rails 应用程序,我正在升级到 Rails 5.1.4。 Capistrano 似乎在第一部分运行良好,但随后抛出此错误...

cd /srv/www/my_app/releases/20180124210207 && ~/.rvm/bin/rvm default do bundle install --path /srv/www/my_app/shared/bundle --without development test --deployment --verbose
 DEBUG [14a8f315]   /usr/lib/ruby/1.9.1/rubygems/dependency.rb:247:in `to_specs'
 DEBUG [14a8f315]   : 
 DEBUG [14a8f315]   Could not find bundler (>= 0) amongst [bundler-unload-1.0.2, did_you_mean-1.1.0, executable-hooks-1.3.2, gem-wrappers-1.3.2, minitest-5.10.1, net-telnet-0.1.1, passenger-5.1.12, power_assert-0.4.1, rack-2.0.3, rake-12.0.0, rubygems-bundler-1.4.4, rvm-1.11.3.9, test-unit-3.2.3, xmlrpc-0.2.1]
 DEBUG [14a8f315]    (
 DEBUG [14a8f315]   Gem::LoadError
 DEBUG [14a8f315]   )

显然我不想使用 ruby 1.9.1,当我 ssh 进入 linux 并执行 ruby -v 它说 Ruby 2.4.1.我使用

将其设置为默认值
rvm get stable
rvm install ruby 2.4.1
sudo rvm --default use 2.4.1

我也在使用 capistrano-rvm gem,当 capistrano 脚本开始部署时它说

 DEBUG [081254bd] Command: ~/.rvm/bin/rvm current
 DEBUG [081254bd]   ruby-2.4.1
 DEBUG [081254bd] Finished in 2.704 seconds with exit status 0 (successful).

 DEBUG [e45e0d6b] Command: ~/.rvm/bin/rvm version
 DEBUG [e45e0d6b]   rvm 1.29.3 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]

为什么在部署中途切换到 ruby 1.9.1?如何让它使用我的默认 ruby 版本 2.4.1?

必须执行以下操作才能使其正常工作...

sudo chown -R your_user /home/deployer/.rvm
gem install bundler

然后 运行 capistrano 脚本。