This is my first time using capistrano and i am getting the following error
*** [deploy:update_code] rolling back
* executing "rm -rf /home/deployer/apps/cf/releases/20121115211351; true"
servers: ["208.68.37.172"]
[208.68.37.172] executing command
command finished in 9420ms
failed: "sh -c 'cd /home/deployer/apps/cf/releases/20121115211351 && bundle install --gemfile /home/deployer/apps/cf/releases/20121115211351/Gemfile --path /home/deployer/apps/cf/shared/bundle --deployment --quiet --without development test'" on 208.68.37.172
I dont even understand the error message. any help to fix this. Thanks
It’s saying that if failed to run that command on the host 208.68.37.172. This command:
If it’s not giving you any other info, you can tweak your configuration to remove
--quietfrom the bundle command to get more output, or run it manually on the server to see what’s going on.