そこで、cap deploy を実行して ec2 にデプロイしようとすると、次の問題が発生します。
** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] * RVM has encountered a new or modified .rvmrc file in the current *
** * directory, this is a shell script and therefore may contain any shell *
** * commands. *
** * *
** * Examine the contents of this file carefully to be sure the contents are *
** * safe before trusting it! *
** * Do you wish to trust '/var/www/highlandsfbart#/shared/cached-copy/.rvmrc'? *
** * Choose v[iew] below to view the contents *
** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] ******************************************************************************
** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] y[es], n[o], v[iew], c[ancel]>
ただし、y と入力して Enter キーを押すと、ハングして何も起こりません。v と入力して入力するときも同じです。
(ローカル) プロジェクト フォルダー内の .rvmrc ファイルをそのまま変更しようとしましたが、これは何もしませんでした。
rvm_trust_rvmrcs_flag=1
また、このコードを deploy.rb に追加しようとしましたが、まだうまくいきません:
namespace :rvm do
desc 'Trust rvmrc file'
task :trust_rvmrc do
run "rvm rvmrc trust #{current_release}"
end
end
after "deploy:update_code", "rvm:trust_rvmrc"
どんな助けでも大歓迎です。