bundle install doesn't work from capistrano

后端 未结 9 1868
再見小時候
再見小時候 2021-02-01 15:14

I want to deploy my simple rails 4.0 application via capistrano 3.0.

I use bundler 1.3.5 so I add capistrano-bundler gem to integ

9条回答
  •  無奈伤痛
    2021-02-01 15:49

    To debug it try to remove the --quiet flag:

    set :bundle_flags, '--deployment'

    Are you using rbenv, rvm or something similar? It might be possible that when bundle is running the Ruby version is not set yet. By removing the --quite flag you might get some debugging information.

提交回复
热议问题