You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get rvm-capistrano to generate an alias and wrappers in order to launch a job processor in my app's environment using init.d.
My deploy.rb looks something like this:
require 'rvm/capistrano'
require 'rvm/capistrano/alias_and_wrapp'
...
set :rvm_ruby_string, :local
set :rvm_autolibs_flag, "read-only"
...
before 'deploy:setup', 'rvm:install_rvm'
before 'deploy:setup', 'rvm:installde_ruby'
before 'deploy:assets:symlink', 'deploy:configuration'
before 'deploy', 'rvm:create_alias'
before 'deploy', 'rvm:create_wrappers'
Only problem is that on deploy, I get the following error:
I'm trying to get
rvm-capistrano
to generate an alias and wrappers in order to launch a job processor in my app's environment using init.d.My deploy.rb looks something like this:
Only problem is that on deploy, I get the following error:
Unfortunately, I wasn't able to find much information on this error. What could be going wrong?
The text was updated successfully, but these errors were encountered: