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
{{ message }}
This repository was archived by the owner on Jan 28, 2026. It is now read-only.
The fix we did in e099d55 fixed something, but I think it also broke another step of the deploy.
I tried deploying a new application and ran into #63. I added the workaround mentioned in that issue, but the deploy still failed.
Turns out the binstubs weren't generated, and in order to get them to generate I also had to add
set:bundle_binstubs,->{shared_path.join('bin')}set:bundle_check_before_install,false# From the issue mentioned above
to the config/deploy.rb file. This to ensure the --binstubs flag gets added to the bundle install command in capistrano-bundler in the followin place (It's linked in the above mentioned issue too).