I'm using cruisecontrol.rb for continuous integration, and have the following settings in cruise_config.rb.
Project.configure do |project|
...
project.build_command = 'my_build_script.sh'
...
end
I've tried to follow this blog post.
However, I can't get 'my_build_script.sh' to run. It kicks off by running 'bundle install'. Any ideas?