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
We could fix this by, either just add set :bundle_check_before_install, false, which will bypass this check in capistrano-bundler. This will cause bundler to generate binstubs on each deploy, and also has the side-effect of running bundle install on each deploy, which takes ~1 second instead of the faster bundle check.
Another fix would be to make our own custom task which regenerates the binstubs using bundle binstubs on each deploy.
The text was updated successfully, but these errors were encountered:
Discovered in https://github.com/twingly/systemutil/issues/223
A deploy failed because the forman binstub, which we use when generating the systemd scripts, was referencing the path of an old release.
capistrano-twingly/lib/capistrano/twingly/tasks/service.rake
Line 33 in 2841110
There's an issue related to this at capistrano/bundler#111
We could fix this by, either just add
set :bundle_check_before_install, false
, which will bypass this check in capistrano-bundler. This will cause bundler to generate binstubs on each deploy, and also has the side-effect of runningbundle install
on each deploy, which takes ~1 second instead of the fasterbundle check
.Another fix would be to make our own custom task which regenerates the binstubs using
bundle binstubs
on each deploy.The text was updated successfully, but these errors were encountered: